You've already forked helm-docker
Some checks failed
Auto release / tag_on_change (push) Successful in 8s
Build / build-amd64 (push) Successful in 21s
Lint Markdown files / markdown-lint (push) Successful in 4s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 4s
Release / push-arm64 (push) Has been cancelled
Release / push-manifest (push) Has been cancelled
Release / sync-to-hub-docker-io (push) Has been cancelled
Release / push-amd64 (push) Has been cancelled
Build / build-arm64 (push) Successful in 55s
The pre-installed plugins must be installed individually. Otherwise runs this project into the problem, that we need to trigger a new release of the container image only to update the plugin in case of an issue.
14 lines
422 B
Docker
14 lines
422 B
Docker
FROM docker.io/library/alpine:3.22.2
|
|
|
|
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 if [[ -z "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh; fi
|
|
RUN if [[ -n "${HELM_VERSION+x}" ]]; then bash /tmp/install.sh --version "${HELM_VERSION}"; fi
|
|
|
|
RUN rm /tmp/install.sh
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/helm" ]
|