fix(docker): correct uvicorn entrypoint to app:app

This commit is contained in:
Chris Christiansen 2026-06-10 14:59:17 +00:00
parent 1b8c8ac79c
commit 0e16a5bf68

View File

@ -14,4 +14,4 @@ COPY . .
ENV PORT=8080
EXPOSE 8080
CMD ["uvicorn", "agents.core-logic.app:app", "--host", "0.0.0.0", "--port", "8080"]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]