samarth-ht commited on
Commit
2bd9524
·
1 Parent(s): 1489e52

fix: correct application import path in CMD of Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -62,5 +62,5 @@ RUN ls
62
  EXPOSE 7860
63
 
64
  # Run the application
65
- CMD ["uvicorn", "app.app:app", "--host", "127.0.0.1", "--port", "7860", "--reload"]
66
 
 
62
  EXPOSE 7860
63
 
64
  # Run the application
65
+ CMD ["uvicorn", "app:app", "--host", "127.0.0.1", "--port", "7860", "--reload"]
66