Skip to content

Commit

Permalink
fix multi arch built var reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mbecker20 committed Dec 2, 2024
1 parent bb63892 commit 1d31110
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/core/multi-arch.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

ARG BINARIES_IMAGE=ghcr.io/mbecker20/komodo-binaries:latest
ARG FRONTEND_IMAGE=ghcr.io/mbecker20/komodo-frontend:latest
ARG X86_64_BINARIES=${BINARY_IMAGE}-x86_64
ARG AARCH64_BINARIES=${BINARY_IMAGE}-aarch64
ARG X86_64_BINARIES=${BINARIES_IMAGE}-x86_64
ARG AARCH64_BINARIES=${BINARIES_IMAGE}-aarch64

# This is required to work with COPY --from
FROM ${X86_64_BINARIES} AS x86_64
Expand Down
4 changes: 2 additions & 2 deletions bin/periphery/multi-arch.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
## Since theres no heavy build here, QEMU multi-arch builds are fine for this image.

ARG BINARIES_IMAGE=ghcr.io/mbecker20/komodo-binaries:latest
ARG X86_64_BINARIES=${BINARY_IMAGE}-x86_64
ARG AARCH64_BINARIES=${BINARY_IMAGE}-aarch64
ARG X86_64_BINARIES=${BINARIES_IMAGE}-x86_64
ARG AARCH64_BINARIES=${BINARIES_IMAGE}-aarch64

# This is required to work with COPY --from
FROM ${X86_64_BINARIES} AS x86_64
Expand Down

0 comments on commit 1d31110

Please sign in to comment.