Update packer and ansible version

This commit is contained in:
Jakob Lechner 2020-01-07 20:19:56 +01:00
parent aedcc9d9bc
commit 564a2c48d2
2 changed files with 12 additions and 3 deletions

View file

@ -1,5 +1,7 @@
FROM docker
ARG ANSIBLE_VERSION
RUN apk add --no-cache \
ca-certificates \
coreutils \
@ -19,7 +21,7 @@ RUN apk add --no-cache \
openssl-dev \
python3-dev \
&& pip3 install --upgrade pip \
&& pip3 install ansible==2.8.0 \
&& pip3 install ansible=="$ANSIBLE_VERSION" \
&& apk del .build-deps
ARG PACKER_VERSION