abdullahalioo commited on
Commit
d4abf30
·
verified ·
1 Parent(s): 9f49d79

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  COPY requirements.txt .
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
 
2
 
3
  WORKDIR /app
4
 
5
+ # install ffmpeg
6
+ RUN apt-get update && apt-get install -y ffmpeg
7
+
8
  COPY requirements.txt .
9
 
10
  RUN pip install --no-cache-dir -r requirements.txt