FROM --platform=$BUILDPLATFORM golang:1.20@sha256:63c5d6404238855365d5bac79ed0564a1e1d3bcda916dfc87cfb32d027e28e1a as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM alpine:3.17@sha256:69665d02cb32192e52e07644d76bc6f25abeb5410edc1c7a81a10ba3f0efb90a 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" ]