This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
check-da-helm/dockerfiles/Dockerfile-helmfile

17 lines
785 B
Plaintext
Raw Normal View History

2023-02-12 08:47:45 +00:00
FROM ghcr.io/allanger/dumb-downloader as builder
RUN apk update && apk add tar
ARG HELM_VERSION=v3.10.3
2023-02-08 21:51:34 +00:00
ARG HELMFILE_VERSION=0.150.0
ENV RUST_LOG=info
2023-02-12 08:47:45 +00:00
RUN dudo -l "https://github.com/helmfile/helmfile/releases/download/v{{ version }}/helmfile_{{ version }}_{{ os }}_{{ arch }}.tar.gz" -i /tmp/helmfile -p $HELMFILE_VERSION
RUN dudo -l "https://get.helm.sh/helm-{{ version }}-{{ os }}-{{ arch }}.tar.gz" -i /tmp/helm.tar.gz -p $HELM_VERSION
RUN tar -xf /tmp/helm.tar.gz -C /tmp && rm -f /tmp/helm.tar.gz
RUN mkdir /out && for bin in `find /tmp | grep helm`; do cp $bin /out/; done
RUN chmod +x /out/helm
RUN chmod +x /out/helmfile
2023-01-25 11:54:22 +00:00
2023-02-07 19:36:18 +00:00
FROM ghcr.io/allanger/check-da-helm-base
COPY --from=builder /out/ /usr/bin
RUN apk update --no-cache && apk add --no-cache jq bash
ENTRYPOINT ["cdh"]