xyplon
commited on
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -20,4 +20,4 @@ ENV FLASK_RUN_HOST=0.0.0.0
|
|
20 |
ENV FLASK_RUN_PORT=7860
|
21 |
|
22 |
# Run the Gunicorn server with the appropriate worker class (gthread)
|
23 |
-
CMD ["gunicorn", "
|
|
|
20 |
ENV FLASK_RUN_PORT=7860
|
21 |
|
22 |
# Run the Gunicorn server with the appropriate worker class (gthread)
|
23 |
+
CMD ["gunicorn", "-w", "20", "-k", "gevent", "-b", "0.0.0.0:7860", "app:app"]
|