From c13eec2b410329ada7edd759c45db7dff7615bba Mon Sep 17 00:00:00 2001 From: Tedi Papajorgji Date: Wed, 5 Aug 2020 16:50:39 -0400 Subject: [PATCH] added awws iam authenticator --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 152356e..8ea8c78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ RUN apk add py-pip curl RUN pip install awscli RUN curl -L -o /usr/bin/kubectl https://amazon-eks.s3.us-west-2.amazonaws.com/1.15.10/2020-02-22/bin/linux/amd64/kubectl RUN chmod +x /usr/bin/kubectl +RUN curl -o /usr/local/bin/aws-iam-authenticator https://amazon-eks.s3.us-west-2.amazonaws.com/1.17.7/2020-07-08/bin/linux/amd64/aws-iam-authenticator +RUN chmod +x /usr/local/bin/aws-iam-authenticator + COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]