Spaces:
Running
Running
imseldrith
commited on
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -22,4 +22,4 @@ RUN pip install -r requirements.txt
|
|
22 |
# webserver, with one worker process and 8 threads.
|
23 |
# For environments with multiple CPU cores, increase the number of workers
|
24 |
# to be equal to the cores available.
|
25 |
-
CMD exec gunicorn --bind 0.0.0.0:
|
|
|
22 |
# webserver, with one worker process and 8 threads.
|
23 |
# For environments with multiple CPU cores, increase the number of workers
|
24 |
# to be equal to the cores available.
|
25 |
+
CMD exec gunicorn --bind 0.0.0.0:7860 --workers 1 --threads 8 --timeout 0 app:app
|