Docker Changes
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -16,4 +16,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
| 16 |
COPY --chown=user . /app
|
| 17 |
|
| 18 |
# Use gunicorn to serve the application, specifying the number of workers and binding it to the correct port
|
| 19 |
-
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "app:app"]
|
|
|
|
| 16 |
COPY --chown=user . /app
|
| 17 |
|
| 18 |
# Use gunicorn to serve the application, specifying the number of workers and binding it to the correct port
|
| 19 |
+
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:7860", "app:app","--timeout","120"]
|