Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -6,8 +6,6 @@ COPY * /code
|
|
6 |
|
7 |
RUN pip install --no-cache-dir -r /code/requirement.txt
|
8 |
|
9 |
-
RUN apt-get install -y
|
10 |
-
|
11 |
-
RUN apt-get install -y libglib2.0-0
|
12 |
|
13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
6 |
|
7 |
RUN pip install --no-cache-dir -r /code/requirement.txt
|
8 |
|
9 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
|
|
|
|
10 |
|
11 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|