bla commited on
Commit
e8c368f
·
verified ·
1 Parent(s): b3f1b81

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]