fix
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -5,6 +5,12 @@ FROM python:3.9
|
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
8 |
+
RUN apt-get update \
|
9 |
+
&& apt-get install -y \
|
10 |
+
ffmpeg \
|
11 |
+
libsm6 \
|
12 |
+
libxext6
|
13 |
+
|
14 |
COPY ./requirements.txt /code/requirements.txt
|
15 |
|
16 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|