Spaces:
Sleeping
Sleeping
add ffmpeg
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -4,6 +4,9 @@ WORKDIR /code
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
|
|
|
|
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
COPY . .
|
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
+
RUN apt-get --update \
|
8 |
+
&& apt install ffmpeg --no-install-recommends
|
9 |
+
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
COPY . .
|