diff --git a/Dockerfile b/Dockerfile index 1b474f27fdb..b5d3e8f4a7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,14 +23,14 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s chmod +x kubectl && \ mv ./kubectl /usr/local/bin/kubectl -RUN curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.11.5/2018-12-06/bin/linux/amd64/aws-iam-authenticator && \ +RUN curl -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator && \ chmod +x ./aws-iam-authenticator && \ mv ./aws-iam-authenticator /usr/local/bin/aws-iam-authenticator && \ ln -sf /usr/local/bin/aws-iam-authenticator /usr/local/bin/heptio-authenticator-aws RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py && \ python /tmp/get-pip.py && \ - pip install awscli --upgrade + pip install awscli==1.16.208 --upgrade ENV PATH "$PATH:/usr/local/bin/" diff --git a/Dockerfile.slim b/Dockerfile.slim index 7b964cdcf04..45cb8ee1f1c 100644 --- a/Dockerfile.slim +++ b/Dockerfile.slim @@ -14,13 +14,13 @@ RUN wget https://storage.googleapis.com/kubernetes-release/release/stable.txt && chmod +x kubectl && \ mv ./kubectl /usr/local/bin/kubectl -RUN wget https://amazon-eks.s3-us-west-2.amazonaws.com/1.11.5/2018-12-06/bin/linux/amd64/aws-iam-authenticator && \ +RUN wget https://amazon-eks.s3-us-west-2.amazonaws.com/1.13.7/2019-06-11/bin/linux/amd64/aws-iam-authenticator && \ chmod +x ./aws-iam-authenticator && \ mv ./aws-iam-authenticator /usr/local/bin/aws-iam-authenticator && \ ln -sf /usr/local/bin/aws-iam-authenticator /usr/local/bin/heptio-authenticator-aws RUN apk -v --update add py-pip && \ - pip install --upgrade awscli==1.16.145 s3cmd==2.0.1 python-magic && \ + pip install --upgrade awscli==1.16.208 s3cmd==2.0.1 python-magic && \ apk -v --purge del py-pip && \ rm /var/cache/apk/*