Merge branch 'fix-build' into 'master'

Fix build

See merge request fablab/labsync!59
This commit is contained in:
jalr 2020-07-24 22:16:33 +00:00
commit dc5259c469

View file

@ -3,6 +3,7 @@ FROM docker
ARG ANSIBLE_VERSION ARG ANSIBLE_VERSION
RUN apk add --no-cache \ RUN apk add --no-cache \
aws-cli \
ca-certificates \ ca-certificates \
coreutils \ coreutils \
gnupg \ gnupg \
@ -19,10 +20,10 @@ RUN apk add --no-cache \
make \ make \
musl-dev \ musl-dev \
openssl-dev \ openssl-dev \
py3-pip \
python3-dev \ python3-dev \
&& pip3 install --upgrade pip \ && pip3 install --upgrade pip \
&& pip3 install ansible=="$ANSIBLE_VERSION" \ && pip3 install ansible=="$ANSIBLE_VERSION" \
&& pip3 install awscli \
&& apk del .build-deps && apk del .build-deps
ARG PACKER_VERSION ARG PACKER_VERSION