From f26a793449a597c49f53fb34670375e342db0da6 Mon Sep 17 00:00:00 2001 From: DatTT127 Date: Sun, 19 Jul 2026 02:26:52 +0700 Subject: [PATCH] update --- .../CODEBASE/deps/implementation/backend_deploy/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workspace/sprint_1_2/CODEBASE/deps/implementation/backend_deploy/Dockerfile b/workspace/sprint_1_2/CODEBASE/deps/implementation/backend_deploy/Dockerfile index 97fdda1..fbe8335 100644 --- a/workspace/sprint_1_2/CODEBASE/deps/implementation/backend_deploy/Dockerfile +++ b/workspace/sprint_1_2/CODEBASE/deps/implementation/backend_deploy/Dockerfile @@ -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