1
0
mirror of https://github.com/Luzifer/dns.git synced 2024-09-19 15:23:03 +00:00

Fix: pip is no longer part of python3 package

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-06-02 14:32:45 +02:00
parent 3bf70db64d
commit 85bea5a964
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -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')