From b4f4e4e0cd0d7ae6520bc1925960f0b764523237 Mon Sep 17 00:00:00 2001 From: Flo Ha Date: Wed, 13 Jul 2022 21:16:07 +0200 Subject: [PATCH] update pip along with requirements --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b86232b..56dcc0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3.10-alpine ENV PYTHONUNBUFFERED=1 WORKDIR /code/ COPY requirements.txt . -RUN pip install --no-cache-dir --requirement requirements.txt +RUN pip install --upgrade pip && \ + pip install --no-cache-dir --requirement requirements.txt COPY . . ENTRYPOINT ["./entrypoint.sh"]