helm-docker/Dockerfile
Markus Pesch 46a766bbfb
Some checks reported errors
continuous-integration/drone/push Build was killed
fix: install helm cm-push plugin from upstream
2022-02-03 21:19:06 +01:00

12 lines
262 B
Docker

FROM docker.io/library/alpine:3.14
ARG HELM_VERSION
COPY install.sh /install.sh
RUN VERSION=${HELM_VERSION} /install.sh
# Install additionally cm-push plugin
RUN helm plugin install https://github.com/chartmuseum/helm-push.git
ENTRYPOINT [ "/usr/bin/helm" ]