Skip to content

Commit

Permalink
Let's make atils-avp handle arch a bit better (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanHilt authored Dec 21, 2024
1 parent acbe099 commit 09febba
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions custom-images/atils-avp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM alpine as download-tool
FROM alpine AS download-tool

ARG TARGETARCH

RUN apk add --no-cache curl

RUN curl -L https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v1.17.0/argocd-vault-plugin_1.17.0_linux_amd64 -o /argocd-vault-plugin
RUN curl -L https://github.com/argoproj-labs/argocd-vault-plugin/releases/download/v1.17.0/argocd-vault-plugin_1.17.0_linux_$TARGETARCH -o /argocd-vault-plugin

FROM quay.io/argoproj/argocd:latest

Expand Down

0 comments on commit 09febba

Please sign in to comment.