From 7813e0065e5a88638bb17177d626bc2326f3a4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Sat, 24 Jul 2021 15:58:10 +0200 Subject: [PATCH] add py3-pip for pip3 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e1cfd42..0876b3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ LABEL "maintainer"="Thomas Sjögren " COPY requirements.txt /requirements.txt -RUN apk --no-cache add gcc musl-dev python3-dev python3 && \ +RUN apk --no-cache add gcc musl-dev py3-pip python3 python3-dev && \ pip3 install --upgrade pip && \ pip3 install -r /requirements.txt && \ apk del gcc musl-dev python3-dev && \