Skip to content

Commit 774339a

Browse files
authored
Update Dockerfile
1 parent c6efc02 commit 774339a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ FROM itamarperez/jsonnet-ci
44
# Copies your code file from your action repository to the filesystem path `/` of the container
55
COPY entrypoint.sh /entrypoint.sh
66

7-
# Install kubectl
7+
# Install
88
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
1013
RUN chmod +x ./kubectl
1114
RUN mv ./kubectl /usr/bin/kubectl
1215

0 commit comments

Comments
 (0)