fix: versioned docker builds must work now
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
ARG BASE_VERSION=latest
|
||||
FROM ghcr.io/allanger/dumb-downloader as builder
|
||||
ARG ARGOCD_VERSION=v2.5.10
|
||||
ENV RUST_LOG=info
|
||||
@@ -5,7 +6,7 @@ RUN mkdir /out
|
||||
RUN dudo -l "https://github.com/argoproj/argo-cd/releases/download/{{ version }}/argocd-{{ os }}-{{ arch }}" -i /tmp/argocd -p $ARGOCD_VERSION
|
||||
RUN mv /tmp/argocd /out/argocd && chmod +x /out/argocd
|
||||
|
||||
FROM ghcr.io/allanger/check-da-helm-base
|
||||
FROM ghcr.io/allanger/check-da-helm-base:${BASE_VERSION}
|
||||
COPY --from=builder /out/ /usr/bin
|
||||
RUN apk update --no-cache && apk add --no-cache jq bash
|
||||
ENTRYPOINT ["cdh"]
|
||||
|
Reference in New Issue
Block a user