shubhajit07 commited on
Commit
29089cf
1 Parent(s): 32471ec
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -11,4 +11,4 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
  COPY . .
13
 
14
- CMD ["gunicorn", "main:app", "-w", "1", "--threads", "100", "--host", "0.0.0.0", "--port", "7860"]
 
11
 
12
  COPY . .
13
 
14
+ CMD ["gunicorn", "-w", "1", "--threads", "100", "-b", "0.0.0.0:7860", "main:app"]