datavorous commited on
Commit
a824f6d
·
verified ·
1 Parent(s): addcb3f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -27,6 +27,6 @@ EXPOSE 8000
27
  RUN ls -la /app
28
  RUN ls -la /app/data
29
  # Command to run the application
30
- CMD ["gunicorn", "main:app", "--bind", "0.0.0.0:8000", "--workers", "4", "--worker-class", "uvicorn.workers.UvicornWorker"]
31
 
32
 
 
27
  RUN ls -la /app
28
  RUN ls -la /app/data
29
  # Command to run the application
30
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
31
 
32