Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -18,4 +18,4 @@ WORKDIR $HOME/app
|
|
18 |
COPY --chown=user . $HOME/app
|
19 |
|
20 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
21 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
18 |
COPY --chown=user . $HOME/app
|
19 |
|
20 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
21 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|