From 85bea5a9649407bf2dbee5e32029a6d500b65ff9 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Tue, 2 Jun 2020 14:32:45 +0200 Subject: [PATCH] Fix: pip is no longer part of python3 package Signed-off-by: Knut Ahlers --- build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d5f90af..565793f 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,11 @@ set -euxo pipefail apk --no-cache add curl # Install dependencies -apk --no-cache add python3 bind-tools bind +apk --no-cache add \ + bind \ + bind-tools \ + py3-pip \ + python3 # Get latest versions of tools using latestver DUMB_INIT_VERSION=$(curl -sSfL 'https://lv.luzifer.io/catalog-api/dumb-init/latest.txt?p=version')