Spaces:
Runtime error
Runtime error
Commit
·
468aa68
1
Parent(s):
fa46f44
fix: update CMD in Dockerfile to use correct application import path and host
Browse files- 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", "
|
|
|
|
62 |
EXPOSE 7860
|
63 |
|
64 |
# Run the application
|
65 |
+
CMD ["uvicorn", "app.app:app", "--host", "127.0.0.1", "--port", "7860", "--reload"]
|
66 |
+
|