Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -4,6 +4,11 @@ FROM python:3.9-slim
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
# Install git, git-lfs, and other necessary packages
|
8 |
RUN apt-get update && \
|
9 |
apt-get install -y git curl && \
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
8 |
+
ffmpeg \
|
9 |
+
&& apt-get clean \
|
10 |
+
&& rm -rf /var/lib/apt/lists/*
|
11 |
+
|
12 |
# Install git, git-lfs, and other necessary packages
|
13 |
RUN apt-get update && \
|
14 |
apt-get install -y git curl && \
|