Sergidev commited on
Commit
618c397
1 Parent(s): 33bff5d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -13,4 +13,5 @@ RUN pip install --no-cache-dir -r requirements.txt
13
 
14
  COPY . .
15
 
16
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
13
 
14
  COPY . .
15
 
16
+ # Use Gunicorn to run the Flask app
17
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]