DenisT commited on
Commit
07223ba
·
1 Parent(s): c851c61

changed Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -9,7 +9,8 @@ COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
- RUN docker pull jrottenberg/ffmpeg
 
13
 
14
  COPY . .
15
 
 
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
+ # Install ffmpeg
13
+ RUN apt-get update && apt-get install -y ffmpeg
14
 
15
  COPY . .
16