From 806f9ac4b068631085d8fe2bf17a777ab0ed6c7c Mon Sep 17 00:00:00 2001 From: Brad Cowie Date: Wed, 1 Dec 2021 11:54:24 +1300 Subject: [PATCH] Install separate pip package. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76efc7f..69ccb02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM faucet/base:6.0.0 -RUN apk add --no-cache python3 && \ +RUN apk add --no-cache python3 py-pip && \ if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \ if [ ! -e /usr/bin/python ]; then ln -s /usr/bin/python3 /usr/bin/python; fi