Vara1605454 commited on
Commit
8c89a51
·
verified ·
1 Parent(s): af1c381

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -19,6 +19,9 @@ RUN pip install --no-cache-dir -r requirements.txt
19
  RUN mkdir -p /app/cache && \
20
  chmod -R 777 /app/cache
21
 
 
 
 
22
  # Copy the rest of your application code into the container
23
  COPY . .
24
 
 
19
  RUN mkdir -p /app/cache && \
20
  chmod -R 777 /app/cache
21
 
22
+ RUN apt-get update && apt-get install -y ffmpeg \
23
+ && rm -rf /var/lib/apt/lists/*
24
+
25
  # Copy the rest of your application code into the container
26
  COPY . .
27