Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -25,4 +25,4 @@ COPY --chown=user . /app
|
|
| 25 |
EXPOSE 7860
|
| 26 |
|
| 27 |
# Start the FastAPI app using uvicorn
|
| 28 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 25 |
EXPOSE 7860
|
| 26 |
|
| 27 |
# Start the FastAPI app using uvicorn
|
| 28 |
+
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|