Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -37,4 +37,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
37 |
CMD curl -f http://localhost:5000/ || exit 1
|
38 |
|
39 |
# Start application
|
40 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
37 |
CMD curl -f http://localhost:5000/ || exit 1
|
38 |
|
39 |
# Start application
|
40 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", "--timeout", "120", "--keep-alive", "5", "--max-requests", "1000", "--max-requests-jitter", "100", "main:app"]
|