From 53b22e3fc695d751073e90930ad5f86608538964 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Thu, 9 Feb 2023 11:59:16 +0100 Subject: [PATCH] Check with a correct link --- dockerfiles/Dockerfile-helmfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile-helmfile b/dockerfiles/Dockerfile-helmfile index 3359297..a7be466 100644 --- a/dockerfiles/Dockerfile-helmfile +++ b/dockerfiles/Dockerfile-helmfile @@ -3,7 +3,7 @@ RUN apk update && apk add tar ARG HELM_VERSION=v3.10.3 ARG HELMFILE_VERSION=0.150.0 ENV RUST_LOG=info -RUN clin -l "https://github.com/helmfile/helmfile/releases/download/v{{ version }}/helmfile_{{ os }}_{{ arch }}.tar.gz" -i /tmp/helmfile -p $HELMFILE_VERSION +RUN clin -l "https://github.com/helmfile/helmfile/releases/download/v{{ version }}/helmfile_{{ version }}_{{ os }}_{{ arch }}.tar.gz" -i /tmp/helmfile -p $HELMFILE_VERSION RUN clin -l "https://get.helm.sh/helm-{{ version }}-{{ os }}-{{ arch }}.tar.gz" -i /tmp/helm.tar.gz -p $HELM_VERSION RUN tar -xf /tmp/helm.tar.gz -C /tmp && rm -f /tmp/helm.tar.gz RUN mkdir /out && for bin in `find /tmp | grep helm`; do cp $bin /out/; done