Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -25,4 +25,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
25 |
COPY --chown=user . /app
|
26 |
|
27 |
# Command to run the application
|
28 |
-
CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app"]
|
|
|
25 |
COPY --chown=user . /app
|
26 |
|
27 |
# Command to run the application
|
28 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "main:app"]
|