Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -5,6 +5,8 @@ WORKDIR /
|
|
5 |
|
6 |
COPY . .
|
7 |
|
|
|
|
|
8 |
RUN pip install -r requirements.txt
|
9 |
|
10 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
5 |
|
6 |
COPY . .
|
7 |
|
8 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
9 |
+
|
10 |
RUN pip install -r requirements.txt
|
11 |
|
12 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|