kshipra-jadav commited on
Commit
f778745
·
1 Parent(s): 78c59ab

change dockerfile gunicorn

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,4 +10,4 @@ RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
10
 
11
  COPY . .
12
 
13
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
10
 
11
  COPY . .
12
 
13
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]