Fix dependency installation order

This commit is contained in:
saidsurucu
2025-10-06 15:02:34 +03:00
parent 69b5da5cef
commit d1728ce114
+2 -1
View File
@@ -9,10 +9,11 @@ COPY pyproject.toml poetry.lock* requirements*.txt* ./
# Fast, deterministic install with `uv` # Fast, deterministic install with `uv`
RUN pip install --no-cache-dir uv && \ RUN pip install --no-cache-dir uv && \
uv pip install --system --no-cache-dir . && \
uv pip install --system --no-cache-dir .[asgi,saas] uv pip install --system --no-cache-dir .[asgi,saas]
# Cache buster - force rebuild # Cache buster - force rebuild
ARG CACHE_BUST=202507221015 ARG CACHE_BUST=202510061202
RUN echo "Cache bust: $CACHE_BUST" RUN echo "Cache bust: $CACHE_BUST"
# Copy application source # Copy application source