Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
|