diff --git a/build/Dockerfile b/build/Dockerfile index e4f1ce2e..5e8e129a 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,14 +1,16 @@ # --- # Stage 1: Install certs, build binary, create default config file # --- -FROM ghcr.io/project-zot/golang:1.20 AS builder +FROM --platform=$BUILDPLATFORM ghcr.io/project-zot/golang:1.20 AS builder + +ARG TARGETOS +ARG TARGETARCH ARG COMMIT -ARG OS -ARG ARCH + RUN mkdir -p /go/src/github.com/project-zot/zot WORKDIR /go/src/github.com/project-zot/zot COPY . . -RUN make COMMIT=$COMMIT OS=$OS ARCH=$ARCH clean binary +RUN make COMMIT=$COMMIT OS=$TARGETOS ARCH=$TARGETARCH clean binary RUN echo '{\n\ "storage": {\n\ "rootDirectory": "/var/lib/registry"\n\ @@ -26,10 +28,10 @@ RUN echo '{\n\ # Stage 2: Final image with nothing but certs, binary, and default config file # --- FROM gcr.io/distroless/base AS final -ARG OS -ARG ARCH +ARG TARGETOS +ARG TARGETARCH COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt -COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-$OS-$ARCH /usr/bin/zot +COPY --from=builder /go/src/github.com/project-zot/zot/bin/zot-$TARGETOS-$TARGETARCH /usr/bin/zot COPY --from=builder /go/src/github.com/project-zot/zot/config.json /etc/zot/config.json ENTRYPOINT ["/usr/bin/zot"] EXPOSE 5000