From dc09bc853fff1d856f38ca5b6ac8dffbdb8a8257 Mon Sep 17 00:00:00 2001 From: Michael Schilonka Date: Thu, 29 Sep 2022 14:10:54 +0200 Subject: [PATCH] feat: install aws executable to Tooler --- tooler/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooler/Dockerfile b/tooler/Dockerfile index b08fd88..c270020 100644 --- a/tooler/Dockerfile +++ b/tooler/Dockerfile @@ -13,7 +13,7 @@ ARG KUBESEAL_VERSION=v0.15.0 # ENV BASE_URL="https://storage.googleapis.com/kubernetes-helm" ENV BASE_URL="https://get.helm.sh" ENV TAR_FILE="helm-v${HELM_VERSION}-linux-${TARGETARCH}.tar.gz" -RUN apk add --update --no-cache curl ca-certificates tar bash git gnupg && \ +RUN apk add --update --no-cache curl ca-certificates tar bash git gnupg aws-cli && \ curl -sL ${BASE_URL}/${TAR_FILE} | tar -xvz && \ mv linux-${TARGETARCH}/helm /usr/bin/helm && \ chmod +x /usr/bin/helm && \