diff --git a/Dockerfile b/Dockerfile index 5aa2fb8..6b9d0b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,11 @@ COPY pyproject.toml poetry.lock* requirements*.txt* ./ # Fast, deterministic install with `uv` RUN pip install --no-cache-dir uv && \ + uv pip install --system --no-cache-dir . && \ uv pip install --system --no-cache-dir .[asgi,saas] # Cache buster - force rebuild -ARG CACHE_BUST=202507221015 +ARG CACHE_BUST=202510061202 RUN echo "Cache bust: $CACHE_BUST" # Copy application source