helm-pages/Dockerfile
2023-12-16 12:38:37 +01:00

10 lines
290 B
Docker

FROM devthefuture/init-container-toolbox:latest
USER 0
ARG HELM_VERSION=3.10.0
RUN curl -sSL https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz \
&& cp linux-amd64/helm /usr/local/bin/helm
USER 1000
COPY src/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]