Spaces:
Running
Running
Commit
·
e4cd95a
1
Parent(s):
add31bf
Add ffmpeg dependency to Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -6,7 +6,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 6 |
libglib2.0-0 \
|
| 7 |
libsm6 \
|
| 8 |
libxext6 \
|
| 9 |
-
libxrender-dev
|
|
|
|
| 10 |
COPY ./requirements.txt /code/requirements.txt
|
| 11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 12 |
|
|
|
|
| 6 |
libglib2.0-0 \
|
| 7 |
libsm6 \
|
| 8 |
libxext6 \
|
| 9 |
+
libxrender-dev \
|
| 10 |
+
ffmpeg
|
| 11 |
COPY ./requirements.txt /code/requirements.txt
|
| 12 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 13 |
|