Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -39,5 +39,8 @@ RUN adduser --disabled-password --gecos '' appuser && \
|
|
| 39 |
RUN pip install spacy && python -m spacy download en_core_web_sm
|
| 40 |
USER appuser
|
| 41 |
|
|
|
|
|
|
|
|
|
|
| 42 |
# Start the FastAPI app
|
| 43 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 39 |
RUN pip install spacy && python -m spacy download en_core_web_sm
|
| 40 |
USER appuser
|
| 41 |
|
| 42 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
| 43 |
+
|
| 44 |
+
|
| 45 |
# Start the FastAPI app
|
| 46 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|