build: update Dockerfile to install project with --no-editable

This commit is contained in:
agatha 2026-03-15 16:03:39 -04:00
parent 43632fe0ad
commit 0d0149f35d

View File

@ -12,7 +12,7 @@ COPY alembic/ alembic/
COPY alembic.ini .
COPY README.md .
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-dev
uv sync --frozen --no-dev --no-editable
FROM python:3.12-slim-bookworm