Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
-
|
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 |
-
#
|
25 |
-
CMD ["
|
|
|
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"]
|