Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -22,8 +22,8 @@ COPY . /code
|
|
| 22 |
|
| 23 |
# Run the Gunicorn server with uvicorn worker
|
| 24 |
# CMD untuk menjalankan Gunicorn
|
| 25 |
-
|
| 26 |
|
| 27 |
-
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--worker-class", "uvicorn.workers.UvicornWorker"]
|
| 28 |
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
| 29 |
|
|
|
|
| 22 |
|
| 23 |
# Run the Gunicorn server with uvicorn worker
|
| 24 |
# CMD untuk menjalankan Gunicorn
|
| 25 |
+
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:7860"]
|
| 26 |
|
| 27 |
+
#CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--worker-class", "uvicorn.workers.UvicornWorker"]
|
| 28 |
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
| 29 |
|