This commit is contained in:
MarkLo 2025-12-20 08:32:16 +08:00
parent 01caf393aa
commit fb26a0797c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ COPY backend/requirements.txt .
# Install Python dependencies with BuildKit cache mount
# This caches downloaded packages between builds, dramatically speeding up rebuilds
RUN --mount=type=cache,target=/root/.cache/pip \
RUN --mount=type=cache,id=pip-cache,target=/root/.cache/pip \
pip install --prefer-binary -r requirements.txt
# Production stage