Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -6,4 +6,8 @@ COPY * /code
|
|
6 |
|
7 |
RUN pip install --no-cache-dir -r /code/requirement.txt
|
8 |
|
|
|
|
|
|
|
|
|
9 |
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 install -y libgl1-mesa-dev
|
10 |
+
|
11 |
+
RUN apt-get install -y libglib2.0-0
|
12 |
+
|
13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|