Niansuh commited on
Commit
5bbbdf6
·
verified ·
1 Parent(s): 2c83da9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,4 +8,4 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . /code
10
 
11
- CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--workers", "4", "--threads", "2"]
 
8
 
9
  COPY . /code
10
 
11
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "4"]