diff --git a/builder/Dockerfile b/builder/Dockerfile index 02627a5..89bcbc4 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -6,7 +6,7 @@ RUN apk add --no-cache \ mktorrent \ openssh-client \ openssl \ - python2 \ + python3 \ rsync \ squashfs-tools \ && apk add --no-cache --virtual .build-deps \ @@ -15,10 +15,9 @@ RUN apk add --no-cache \ make \ musl-dev \ openssl-dev \ - py2-pip \ - python-dev \ - && pip install --upgrade pip \ - && pip install ansible==2.7.0 \ + python3-dev \ + && pip3 install --upgrade pip \ + && pip3 install ansible==2.8.0 \ && apk del .build-deps ARG PACKER_VERSION