From d1728ce114b929809c17963c8c2d281bb11dee1e Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Mon, 6 Oct 2025 15:02:34 +0300 Subject: [PATCH] Fix dependency installation order --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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