Spaces:
Runtime error
Runtime error
Commit
·
f30649b
1
Parent(s):
ba719d2
fix: correct application import path in CMD of Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -60,4 +60,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 60 |
EXPOSE 7860
|
| 61 |
|
| 62 |
# Run the application
|
| 63 |
-
CMD ["uvicorn", "app
|
|
|
|
| 60 |
EXPOSE 7860
|
| 61 |
|
| 62 |
# Run the application
|
| 63 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]
|