- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -42,5 +42,5 @@ ENV HOME=/home/user \
|
|
42 |
|
43 |
EXPOSE 7860
|
44 |
|
45 |
-
# Run the server using
|
46 |
-
CMD ["uvicorn", "
|
|
|
42 |
|
43 |
EXPOSE 7860
|
44 |
|
45 |
+
# Run the server using uvicorn with app.py as the entrypoint
|
46 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|