GoodML commited on
Commit
34adbdf
·
verified ·
1 Parent(s): 2f70478

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -1,5 +1,4 @@
1
- # Use Python 3.9 as the base image
2
- FROM python:3.9
3
 
4
  # Install Tesseract-OCR and language data
5
  RUN apt-get update && \
@@ -21,5 +20,5 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
21
  # Copy the application code
22
  COPY --chown=user . /app
23
 
24
- # Command to run the application
25
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.10
 
2
 
3
  # Install Tesseract-OCR and language data
4
  RUN apt-get update && \
 
20
  # Copy the application code
21
  COPY --chown=user . /app
22
 
23
+ # Run Gunicorn with timeout and workers
24
+ CMD ["gunicorn", "--timeout", "120", "-w", "2", "-b", "0.0.0.0:7860", "app:app"]