From f9c3e500d9e5681e6e1bee1e71a357fa48df5edc Mon Sep 17 00:00:00 2001 From: Brian Fogarty Date: Tue, 11 May 2021 22:25:47 -0400 Subject: [PATCH] hotfix: install awscli via pip Fixes deliverybot#56 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9595117..47452f19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ ENV HELM_3_FILE="helm-v3.4.2-linux-amd64.tar.gz" RUN apk add --no-cache ca-certificates \ --repository http://dl-3.alpinelinux.org/alpine/edge/community/ \ - jq curl bash nodejs aws-cli && \ + jq curl bash nodejs python3 && \ + pip3 install awscli && \ # Install helm version 2: curl -L ${BASE_URL}/${HELM_2_FILE} |tar xvz && \ mv linux-amd64/helm /usr/bin/helm && \