Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -31,5 +31,5 @@ WORKDIR /home/user
|
|
31 |
|
32 |
RUN pwd && ls -l
|
33 |
|
34 |
-
# Start the application using gunicorn
|
35 |
-
CMD ["gunicorn", "main:app", "--workers", "4", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860", "--timeout", "300"]
|
|
|
31 |
|
32 |
RUN pwd && ls -l
|
33 |
|
34 |
+
# Start the application using gunicorn with increased log level
|
35 |
+
CMD ["gunicorn", "main:app", "--workers", "4", "--worker-class", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:7860", "--timeout", "300", "--log-level", "debug"]
|