d-e-e-k-11 commited on
Commit
6aded2b
·
verified ·
1 Parent(s): 15c5087

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -29,5 +29,5 @@ COPY --chown=user . .
29
  # Expose port
30
  EXPOSE 7860
31
 
32
- # Run the application
33
- CMD ["python", "app.py"]
 
29
  # Expose port
30
  EXPOSE 7860
31
 
32
+ # Run the application with gunicorn
33
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]