Skip to content

Commit

Permalink
fix: Support podman and older version of docker (#8870)
Browse files Browse the repository at this point in the history
Podman and older versions of docker do not support multiple args
on a single line. It was recently added to docker in this commit
moby/buildkit#1692 and podman still dose not have support
for it.

Signed-off-by: zachaller <zachaller@hotmail.com>
  • Loading branch information
zachaller authored Mar 23, 2022
1 parent f313db9 commit a10b28e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ RUN go mod download
# Perform the build
COPY . .
COPY --from=argocd-ui /src/dist/app /go/src/github.com/argoproj/argo-cd/ui/dist/app
ARG TARGETOS TARGETARCH
ARG TARGETOS
ARG TARGETARCH
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH make argocd-all

####################################################################################################
Expand Down

0 comments on commit a10b28e

Please sign in to comment.