Files
helm/Dockerfile
Konstantin Grachev 7d4439b84c
All checks were successful
continuous-integration/drone/push Build is passing
chore: bump helm version up to 3.11.1
2023-03-01 16:46:55 +03:00

17 lines
540 B
Docker

FROM alpine/helm:3.11.1 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