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-argo

12 lines
429 B
Plaintext
Raw Normal View History

2023-02-06 21:52:26 +00:00
FROM ghcr.io/allanger/clever-install as builder
ARG ARGOCD_VERSION=v2.5.10
ENV RUST_LOG=info
RUN mkdir /out
RUN clin -l "https://github.com/argoproj/argo-cd/releases/download/{{ version }}/argocd-{{ os }}-{{ arch }}" -i /out/argocd -p $ARGOCD_VERSION
RUN chmod +x /out/argocd
2023-02-07 19:36:18 +00:00
FROM ghcr.io/allanger/check-da-helm-base
2023-02-06 21:52:26 +00:00
COPY --from=builder /out/ /usr/bin
RUN apk update --no-cache && apk add --no-cache jq bash
ENTRYPOINT ["cdh"]