From 0d0149f35de61400a7871dd78ca73e38da139fe5 Mon Sep 17 00:00:00 2001 From: agatha Date: Sun, 15 Mar 2026 16:03:39 -0400 Subject: [PATCH] build: update Dockerfile to install project with `--no-editable` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 35a3870..f7f8ee9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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