deveix commited on
Commit
e0568c1
1 Parent(s): 99e28b3

fix update

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ FROM python:3.9-slim
7
 
8
  # Copy just the requirements into the working directory so it gets cached by itself
9
  COPY ./requirements.txt /code/requirements.txt
10
- RUN apt-get install ffmpeg
11
 
12
  # Install the dependencies from the requirements file
13
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
7
 
8
  # Copy just the requirements into the working directory so it gets cached by itself
9
  COPY ./requirements.txt /code/requirements.txt
10
+ RUN apt-get update && apt-get install -y ffmpeg
11
 
12
  # Install the dependencies from the requirements file
13
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt