Spaces:
Running
Running
BraydenMoore
commited on
Commit
·
b757a3b
1
Parent(s):
2c8dc47
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -25,4 +25,5 @@ WORKDIR $APP_HOME
|
|
25 |
COPY --chown=user . $HOME/app
|
26 |
|
27 |
# Run the web service on container startup.
|
28 |
-
CMD exec gunicorn --bind 0.0.0.0:7860 --workers
|
|
|
|
25 |
COPY --chown=user . $HOME/app
|
26 |
|
27 |
# Run the web service on container startup.
|
28 |
+
CMD exec gunicorn --bind 0.0.0.0:7860 --workers 9 --threads 16 --timeout 120 main:app
|
29 |
+
|