fix: Use the correct dudo argument in Dockerfiles

This commit is contained in:
Nikolai Rodionov
2023-04-04 14:24:12 +02:00
parent 64ae4af142
commit 1e8894efcc
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ FROM ghcr.io/allanger/dumb-downloader as builder
ARG ARGOCD_VERSION=v2.5.10
ENV RUST_LOG=info
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 dudo -l "https://github.com/argoproj/argo-cd/releases/download/{{ version }}/argocd-{{ os }}-{{ arch }}" -d /tmp/argocd -p $ARGOCD_VERSION
RUN mv /tmp/argocd /out/argocd && chmod +x /out/argocd
FROM ghcr.io/allanger/check-da-helm-base:${BASE_VERSION}