File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,12 @@ FROM itamarperez/jsonnet-ci
4
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
5
COPY entrypoint.sh /entrypoint.sh
6
6
7
- # Install kubectl
7
+ # Install
8
8
RUN apt-get update && apt-get install -y bash curl git
9
- RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
9
+ RUN pip install awscli
10
+ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
11
+ 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
12
+ RUN chmod +x /usr/local/bin/aws-iam-authenticator
10
13
RUN chmod +x ./kubectl
11
14
RUN mv ./kubectl /usr/bin/kubectl
12
15
You can’t perform that action at this time.
0 commit comments