Update Dockerfile to use python app.py as the startup command
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -53,6 +53,6 @@ HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
|
|
53 |
EXPOSE 8000
|
54 |
|
55 |
# Use a startup script with debug output
|
56 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000", "--log-level", "debug"]
|
57 |
-
|
58 |
|
|
|
53 |
EXPOSE 8000
|
54 |
|
55 |
# Use a startup script with debug output
|
56 |
+
# CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000", "--log-level", "debug"]
|
57 |
+
CMD ["python", "app.py"]
|
58 |
|