fix: compile helm cm-push plugin via build step
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Markus Pesch 2022-02-03 17:59:25 +01:00
parent 87b7296618
commit 7408a66044
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,13 @@
FROM docker.io/library/golang:1.17.6-alpine AS helm-push-plugin
RUN apk update && \
apk upgrade && \
apk add make git
RUN git clone https://github.com/volker-raschek/helm-push && \
make --directory /go/helm-push build_linux && \
cp /go/helm-push/bin/linux/$(go env GOARCH)/helm-cm-push /go/helm-push/helm-cm-push
FROM docker.io/library/alpine:3.14
ARG HELM_VERSION
@ -5,4 +15,10 @@ ARG HELM_VERSION
COPY install.sh /install.sh
RUN VERSION=${HELM_VERSION} /install.sh
# TODO: Until the following issue is not fixed, it is not possible to install
# cm-push on other target architectures instead of amd64. Use instead the
# precompiled binary.
# https://github.com/chartmuseum/helm-push/issues/128
COPY --from=helm-push-plugin /go/helm-push/helm-cm-push /usr/bin/helm-cm-push
ENTRYPOINT [ "/usr/bin/helm" ]