scott12355 commited on
Commit
cb0ffdb
·
verified ·
1 Parent(s): f7cf942

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -26,4 +26,4 @@ COPY --chown=user . $HOME/app
26
  EXPOSE 7860
27
 
28
  # Run app.py when the container launches
29
- CMD ["python", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
26
  EXPOSE 7860
27
 
28
  # Run app.py when the container launches
29
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app.py"]