Spaces:
Runtime error
Runtime error
root
commited on
Commit
·
9522879
1
Parent(s):
a803331
update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -29,6 +29,8 @@ RUN pip install torch==1.13.0+cpu torchvision==0.14.0+cpu torchaudio==0.13.0 --e
|
|
29 |
# webserver, with one worker process and 8 threads.
|
30 |
# For environments with multiple CPU cores, increase the number of workers
|
31 |
# to be equal to the cores available.
|
32 |
-
CMD exec gunicorn --bind 0.0.0.0:7860 --workers 1 --threads 8 --timeout 0 app:app
|
33 |
|
34 |
-
# CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --threads 8 --timeout 0 app:app
|
|
|
|
|
|
29 |
# webserver, with one worker process and 8 threads.
|
30 |
# For environments with multiple CPU cores, increase the number of workers
|
31 |
# to be equal to the cores available.
|
32 |
+
# CMD exec gunicorn --bind 0.0.0.0:7860 --workers 1 --threads 8 --timeout 0 app:app
|
33 |
|
34 |
+
# CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --threads 8 --timeout 0 app:app
|
35 |
+
|
36 |
+
CMD ["streamlit","run streamlit_app.py", "--server.port","7860"]
|