loodvanniekerkginkgo commited on
Commit
d2b4a3a
·
1 Parent(s): 1bcb06b

Changed entrypoint to python again

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -27,8 +27,8 @@ COPY --chown=user . $HOME/app
27
  EXPOSE 7860
28
  ENV GRADIO_SERVER_NAME="0.0.0.0"
29
 
30
- # CMD ["python", "app.py"]
31
  # Running with gradio enables hot reloading (https://www.gradio.app/guides/developing-faster-with-reload-mode)
32
- CMD ["gradio", "app.py"]
33
  # Or just run the container without the entrypoint and rerun the python app.py command when you want to reload
34
 
 
27
  EXPOSE 7860
28
  ENV GRADIO_SERVER_NAME="0.0.0.0"
29
 
30
+ CMD ["python", "app.py"]
31
  # Running with gradio enables hot reloading (https://www.gradio.app/guides/developing-faster-with-reload-mode)
32
+ # CMD ["gradio", "app.py"]
33
  # Or just run the container without the entrypoint and rerun the python app.py command when you want to reload
34