diff --git a/templates/dockerfiles/xl-cli/Dockerfile.j2 b/templates/dockerfiles/xl-cli/Dockerfile.j2 index e3d1f515c..0cd374eb5 100644 --- a/templates/dockerfiles/xl-cli/Dockerfile.j2 +++ b/templates/dockerfiles/xl-cli/Dockerfile.j2 @@ -49,11 +49,11 @@ RUN apk add --no-cache yq && \ # Install helm RUN apk add --no-cache curl tar && \ - curl -LO https://get.helm.sh/helm-v3.7.0-linux-amd64.tar.gz && \ - tar -xvf helm-v3.7.0-linux-amd64.tar.gz && \ + curl -LO https://get.helm.sh/helm-v3.14.0-linux-amd64.tar.gz && \ + tar -xvf helm-v3.14.0-linux-amd64.tar.gz && \ chmod +x linux-amd64/helm && \ mv linux-amd64/helm /usr/local/bin && \ - rm -rf helm-v3.7.0-linux-amd64.tar.gz linux-amd64 && \ + rm -rf helm-v3.14.0-linux-amd64.tar.gz linux-amd64 && \ apk del curl tar && \ helm version