helm-docker/Dockerfile
Markus Pesch b6207b0e77
Some checks failed
continuous-integration/drone/push Build is failing
fix: upgrad to docker.io/library/alpine v3.18.3
2023-06-18 21:42:40 +02:00

17 lines
502 B
Docker

FROM docker.io/library/alpine:3.18.3
ARG HELM_VERSION
RUN apk add bash curl git openssl && \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 --output /tmp/install.sh
RUN [[ ${HELM_VERSION} == "" ]]; bash /tmp/install.sh
RUN [[ ${HELM_VERSION} != "" ]]; bash /tmp/install.sh --version ${HELM_VERSION}
RUN rm /tmp/install.sh
# Install additionally cm-push plugin
RUN helm plugin install https://github.com/chartmuseum/helm-push.git
ENTRYPOINT [ "/usr/local/bin/helm" ]