From 4d733bf9730de659c7063a33feb989d33e133f1d Mon Sep 17 00:00:00 2001 From: David <39565245+dmunozv04@users.noreply.github.com> Date: Thu, 3 Feb 2022 13:25:33 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d083080..2cb06d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,7 @@ ENV PATH="/opt/venv/bin:$PATH" COPY requirements.txt . -RUN pip install wheel - -RUN pip install -r requirements.txt +RUN pip install --upgrade pip && pip install wheel && pip install -r requirements.txt FROM python:3.10-slim-bullseye