fix(ci): correct backend ASGI path for runtime black-box lane
All checks were successful
CICD Start / Sanity and Base Decision (push) Successful in 21s
CICD Start / Sanity and Base Decision (pull_request) Successful in 40s

This commit is contained in:
copilotcoder
2026-07-03 21:58:36 -04:00
parent 3a47f3f154
commit 6da60e6beb
4 changed files with 11 additions and 4 deletions

View File

@@ -34,4 +34,4 @@ COPY backend/ .
EXPOSE 8000
# Default command - can be overridden in compose for development
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "8000"]