tuan243 commited on
Commit
834780d
·
verified ·
1 Parent(s): 76d1dc4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]