modified dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -22,4 +22,4 @@ COPY --chown=appuser:appuser . /app
|
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# Command to run the app with uvicorn on port 7860, listening on all interfaces
|
25 |
-
CMD ["
|
|
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# Command to run the app with uvicorn on port 7860, listening on all interfaces
|
25 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|