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 fbe8335..fa24382 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,7 @@ 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 install --no-cache-dir --upgrade pip \ +RUN pip install --no-cache-dir --upgrade pip && \ pip wheel --no-cache-dir --wheel-dir=/wheels -r requirements.txt # =============================================================================