Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -39,5 +39,5 @@ USER flaskuser
|
|
39 |
EXPOSE 7860
|
40 |
|
41 |
# Run the Flask app using gunicorn with an infinite request timeout
|
42 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "0", "app:app"]
|
43 |
-
|
|
|
39 |
EXPOSE 7860
|
40 |
|
41 |
# Run the Flask app using gunicorn with an infinite request timeout
|
42 |
+
# CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "0", "app:app"]
|
43 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "0", "--access-logfile", "-", "--error-logfile", "-", "app:app"]
|