From baeedf978f09ff681cc3ae5759dd80f1bf5ad3b4 Mon Sep 17 00:00:00 2001 From: Nadia Date: Fri, 26 Jul 2024 13:17:19 +0500 Subject: [PATCH] feat: install helm --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index df74197..9214c75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,6 +47,9 @@ RUN apt-get update \ && dpkg -i /tmp/gh_${GITHUB_CLI_VERSION}_linux_amd64.deb \ # Cleanup && rm -rf /var/lib/apt/lists/* + && curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 + && chmod 700 get_helm.sh + && ./get_helm.sh COPY global.json /global.json