From f12876bfa6511513d8b60443fb97de33f0c5554e Mon Sep 17 00:00:00 2001 From: koslib Date: Tue, 17 May 2022 15:16:30 +0200 Subject: [PATCH] Reinstated aws-iam-authenticator bin --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5b42539..a543eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,9 @@ RUN pip install "awscli==${AWSCLI_VERSION}" RUN curl -L -o /usr/bin/kubectl https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl RUN chmod +x /usr/bin/kubectl +RUN curl -o /usr/bin/aws-iam-authenticator https://amazon-eks.s3.us-west-2.amazonaws.com/1.21.2/2021-07-05/bin/linux/amd64/aws-iam-authenticator +RUN chmod +x /usr/bin/aws-iam-authenticator + RUN wget https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm RUN chmod +x /usr/local/bin/helm