satyamr196 commited on
Commit
2d27e88
·
1 Parent(s): 6484298

dockerfile changes for gunicorn

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,4 +10,4 @@ COPY ./requirements.txt requirements.txt
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
  COPY . /app
13
- CMD ["uvicorn", "ASR_Server:app", "--host", "0.0.0.0", "--port", "7860"]
 
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
  COPY . /app
13
+ CMD ["gunicorn","-b", "0.0.0.0:7860","ASR_Server:app"]