update
Some checks failed
Backend EC - Modal Deployment / build-and-push (push) Failing after 1m35s
Backend EC - Modal Deployment / notify-deploy (push) Has been skipped

This commit is contained in:
DatTT127
2026-07-19 02:26:52 +07:00
parent ea864cbb0d
commit f26a793449

View File

@@ -28,7 +28,8 @@ COPY requirements.txt .
# Build wheel files for all dependencies AND their transitive dependencies.
# --wheel-dir=/wheels: write .whl files to the wheelhouse directory
# (no --no-deps: we want the full dependency tree pre-compiled)
RUN pip wheel --no-cache-dir --wheel-dir=/wheels -r requirements.txt
RUN pip install --no-cache-dir --upgrade pip \
pip wheel --no-cache-dir --wheel-dir=/wheels -r requirements.txt
# =============================================================================
# Stage 2: Application Builder