From d36e99e27f11c55f406c13a7bb42ce843c2c6e3e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 23 Jul 2020 18:53:35 +0200 Subject: [PATCH] Install awscli from alpine in builder --- builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/Dockerfile b/builder/Dockerfile index 2636e93..78b21b6 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -3,6 +3,7 @@ FROM docker ARG ANSIBLE_VERSION RUN apk add --no-cache \ + aws-cli \ ca-certificates \ coreutils \ gnupg \ @@ -23,7 +24,6 @@ RUN apk add --no-cache \ python3-dev \ && pip3 install --upgrade pip \ && pip3 install ansible=="$ANSIBLE_VERSION" \ - && pip3 install awscli \ && apk del .build-deps ARG PACKER_VERSION