eloukas commited on
Commit
34695e0
·
verified ·
1 Parent(s): ee7bead

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -12,7 +12,7 @@ COPY --chown=user . .
12
 
13
  EXPOSE 7860
14
 
15
- # CMD ["gunicorn", "app:server", "--bind", "0.0.0.0:7860", "--workers", "4"]
16
 
17
- # Option 1: Point directly to the Dash app's server
18
- CMD ["gunicorn", "app:app.server", "--bind", "0.0.0.0:7860", "--workers", "4"]
 
12
 
13
  EXPOSE 7860
14
 
15
+ CMD ["gunicorn", "app:server", "--bind", "0.0.0.0:7860", "--workers", "4"]
16
 
17
+ # Option 1: Point directly to the Dash app's server. -- does not work for hf spaces
18
+ # CMD ["gunicorn", "app:app.server", "--bind", "0.0.0.0:7860", "--workers", "4"]