muhammadhasnain100 commited on
Commit
52cf6b9
·
verified ·
1 Parent(s): 951d688

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -11,6 +11,6 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
 
12
  COPY --chown=user . /app
13
  # Run the Flask API
14
- CMD ["gunicorn", "-w", "4", "-b", "--host", "0.0.0.0", "--port", "7860", "app:app"]
15
 
16
 
 
11
 
12
  COPY --chown=user . /app
13
  # Run the Flask API
14
+ CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]
15
 
16