Skip to content
Snippets Groups Projects
Dockerfile.helm 518 B
FROM alpine:latest as INSTALLER

LABEL maintainer="eole@ac-dijon.fr"

RUN apk add --no-cache \
    ca-certificates \
    curl \
    git \
    openssl

RUN curl -o get-helm-3 https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
RUN sh ./get-helm-3
RUN helm plugin install https://github.com/chartmuseum/helm-push

FROM alpine:latest

LABEL maintainer="eole@ac-dijon.fr"

COPY --from=INSTALLER /usr/local/bin/helm /usr/local/bin/helm
COPY --from=INSTALLER /root/.local/share/helm/ /root/.local/share/helm