12 lines
		
	
	
		
			430 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			430 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
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 /out/argocd -p $ARGOCD_VERSION
 | 
						|
RUN chmod +x /out/argocd
 | 
						|
 | 
						|
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"]
 |