FROM --platform=$BUILDPLATFORM golang:1.20@sha256:2fa5a2828aed17321133e0e765abd95e67e2d109a56f0574a03daa0069cc77aa as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM alpine:3.17@sha256:124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126 LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="drone-matrix" LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-matrix" LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-matrix" LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-matrix" COPY --from=build /src/dist/drone-matrix /bin/drone-matrix ENTRYPOINT [ "/bin/drone-matrix" ]