next-playground commited on
Commit
d57656e
·
verified ·
1 Parent(s): 5fe1251

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,7 +8,7 @@ WORKDIR /app
8
  COPY . /app
9
 
10
  # 安装依赖
11
- RUN sh -c 'echo "deb https://johnvansickle.com/ffmpeg/debian $(lsb_release -cs) ffmpeg" > /etc/apt/sources.list.d/johnvansickle-ffmpeg.list' & apt-get update & apt-get install ffmpeg
12
  RUN pip install --no-cache-dir gunicorn
13
  RUN pip install --no-cache-dir -r requirements.txt
14
  RUN pip install --no-cache-dir flask
 
8
  COPY . /app
9
 
10
  # 安装依赖
11
+ RUN add-apt-repository ppa:kirillshkrogalev/ffmpeg-next & apt-get update & apt-get install ffmpeg
12
  RUN pip install --no-cache-dir gunicorn
13
  RUN pip install --no-cache-dir -r requirements.txt
14
  RUN pip install --no-cache-dir flask