File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM alpine:3.19
33ARG DAPPER_HOST_ARCH
44ENV ARCH $DAPPER_HOST_ARCH
55
6- RUN apk -U add bash docker-cli git
6+ RUN apk -U add bash docker-cli docker-cli-buildx git
77ENV DAPPER_ENV REPO TAG DRONE_TAG
88ENV DAPPER_SOURCE /go/src/github.com/k3s-io/klipper-helm/
99ENV DAPPER_OUTPUT ./bin ./dist
Original file line number Diff line number Diff line change 11FROM alpine:3.19 as extract
22RUN apk add -U curl ca-certificates
33ARG ARCH
4- RUN curl https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
4+ RUN curl -sL https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
55RUN mv /usr/bin/helm /usr/bin/helm_v2
6- RUN curl https://get.helm.sh/helm-v3.14.2 -linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
6+ RUN curl -sL https://get.helm.sh/helm-v3.15.0 -linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
77RUN mv /usr/bin/helm /usr/bin/helm_v3
88COPY entry /usr/bin/
99
You can’t perform that action at this time.
0 commit comments