Files
helm/Dockerfile

17 lines
540 B
Docker

FROM alpine/helm:3.10.2 as helm
RUN set -ex \
&& apk upgrade \
&& apk add --no-cache bash \
&& helm plugin install https://github.com/chartmuseum/helm-push \
\
&& wget -qO- https://github.com/mikefarah/yq/releases/download/v4.30.8/yq_linux_amd64 -O /usr/local/bin/yq \
&& chmod +x /usr/local/bin/yq \
\
&& wget -qO- https://raw.githubusercontent.com/fsaintjacques/semver-tool/master/src/semver -O /usr/local/bin/semver \
&& chmod +x /usr/local/bin/semver
ADD script.sh /bin/
ENTRYPOINT /bin/script.sh