From 804e3dbcf8e48e60d857e131d0f94cfc130f4033 Mon Sep 17 00:00:00 2001 From: ties Date: Wed, 28 Aug 2024 11:48:09 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29e8dbe..6713943 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,11 @@ ENV TZ="Europe/Amdsterdam" RUN useradd -ms /bin/bash user RUN apt update -RUN apt install -y yq curl wget nano +RUN apt install -y curl wget nano RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash +RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq +RUN chmod +x /usr/bin/yq COPY createHelmYaml.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/createHelmYaml.sh