Skip to content

Commit 6cd6e1a

Browse files
author
Michal Drla
committed
fix: Change installing helm from installer to extracting binaries
Signed-off-by: Michal Drla <mdrla@redhat.com>
1 parent a288437 commit 6cd6e1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ RUN \
4949
curl -o /usr/local/bin/sops -L https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux && \
5050
chmod +x /usr/local/bin/sops && \
5151
# Install Helm
52-
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/$HELM_VERSION/scripts/get-helm-3 && \
53-
chmod 700 get_helm.sh && ./get_helm.sh && \
52+
curl -L https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -xzf - --strip-components 1 -C /usr/local/bin linux-amd64/helm &&\
53+
chmod +x /usr/local/bin/helm && \
5454
# Install Helm Secrets
5555
helm plugin install https://github.com/jkroepke/helm-secrets --version=$HELM_SECRETS_VERSION && \
5656
# Install conftest

0 commit comments

Comments
 (0)