Markus Pesch
0e9d6d25e4
All checks were successful
continuous-integration/drone/push Build is passing
18 lines
580 B
Docker
18 lines
580 B
Docker
FROM docker.io/library/alpine:3.20.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 helm plugins
|
|
RUN helm plugin install https://github.com/chartmuseum/helm-push.git && \
|
|
helm plugin install https://github.com/helm-unittest/helm-unittest.git
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/helm" ]
|