Skip to content

Commit

Permalink
Add envsubst to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
roimor committed Jan 5, 2022
1 parent 796a36e commit 77620ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s
curl -o /usr/local/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 && \
chmod +x /usr/local/bin/aws-iam-authenticator && \
chmod +x ./kubectl && \
mv ./kubectl /usr/bin/kubectl
mv ./kubectl /usr/bin/kubectl && \
yum install -y gettext

RUN kubectl version --client

COPY entrypoint.sh /entrypoint.sh

RUN chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 77620ee

Please sign in to comment.