From 77620ee0ed596dcba62158d997d9ae5bc77358c4 Mon Sep 17 00:00:00 2001 From: roimor Date: Wed, 5 Jan 2022 12:36:28 +0200 Subject: [PATCH] Add envsubst to docker image --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3c3619..ab9853e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file