samarth-ht commited on
Commit
468aa68
·
1 Parent(s): fa46f44

fix: update CMD in Dockerfile to use correct application import path and host

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