navindusa commited on
Commit
8cfa4dd
·
1 Parent(s): fc4d252

Update Dockerfile to specify the application module for uvicorn command

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -47,4 +47,4 @@ COPY --chown=appuser . $HOME/app
47
  EXPOSE 7860
48
 
49
  # Run the application.
50
- CMD ["uvicorn", "--host", "0.0.0.0", "--port", "7860"]
 
47
  EXPOSE 7860
48
 
49
  # Run the application.
50
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]