From 0097e0a85b7c9fb74b446de8b04bff9740445466 Mon Sep 17 00:00:00 2001 From: jalr Date: Thu, 23 May 2019 20:00:13 +0200 Subject: [PATCH] Use python3; Update ansible --- builder/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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