fix: have uvicorn use Settings.port and Settings.host

This commit is contained in:
cătălin 2025-03-06 18:49:16 +01:00
commit e6c81a3884
No known key found for this signature in database
7 changed files with 15 additions and 7 deletions

View file

@ -38,7 +38,7 @@ COPY --chown=$USERNAME migrations/ migrations/
FROM base AS serve
CMD ["make", "serve"]
CMD ["uv", "run", "uvicorn", "src.apps.httpapi.litestar.main:app"]
FROM base AS migrate