Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -30,4 +30,4 @@ COPY --chown=user . $HOME/app
|
|
30 |
|
31 |
# run when the container starts
|
32 |
# starts the FastAPI app using uvicorn and port 7860
|
33 |
-
CMD ["uvicorn", "app
|
|
|
30 |
|
31 |
# run when the container starts
|
32 |
# starts the FastAPI app using uvicorn and port 7860
|
33 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|