From 5aa36b252aa08f21f1a097b762ddbe79f80eee97 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Fri, 13 Feb 2026 03:38:08 -0700 Subject: [PATCH] Remove unsupported --no-editable flag from backend Dockerfile --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 228c43e..5c679bc 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -37,13 +37,13 @@ ENV UV_COMPILE_BYTECODE=1 # Install dependencies first (no source yet -- better caching) RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \ - uv pip install --system --no-editable . + uv pip install --system . COPY src/ ./src/ # Re-install with source to get the package registered RUN --mount=type=cache,target=/root/.cache/uv \ - uv pip install --system --no-editable . + uv pip install --system . # Run as non-root RUN useradd --create-home --shell /bin/bash spicebook