Skip to content

Commit

Permalink
Fix architecture parameter (#11988)
Browse files Browse the repository at this point in the history
  • Loading branch information
lystopad authored Sep 13, 2024
1 parent 1cfb2c9 commit 1eff2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ RUN echo "DEBUG: content of build-amd64" && ls -l /build-amd64 && \
FROM ${CI_CD_MAIN_TARGET_BASE_IMAGE} AS ci-cd-main-branch
ARG USER=erigon \
GROUP=erigon \
BUILD_ARCH=$TARGETARCH \
TARGETARCH \
EXPOSED_PORTS

RUN --mount=type=bind,from=ci-cd-main-branch-builder,source=/build-${BUILD_ARCH},target=/tmp/erigon \
RUN --mount=type=bind,from=ci-cd-main-branch-builder,source=/build-${TARGETARCH},target=/tmp/erigon \
apk add --no-cache ca-certificates tzdata libstdc++ && \
addgroup ${GROUP} && \
adduser -D -h /home/${USER} -G ${GROUP} ${USER} && \
Expand Down

0 comments on commit 1eff2f4

Please sign in to comment.