From a5baedc078beff996241f0a98118c9af40f9864e 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 d7ff79a7..12b2ebfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ ENV HELM_3_FILE="helm-v3.0.0-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 && \ + pip3 install awscli && \ # Install helm version 2: curl -L ${BASE_URL}/${HELM_2_FILE} |tar xvz && \ mv linux-amd64/helm /usr/bin/helm && \