FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.22@sha256:192683db8982323952988c7b86c098ee7ecc6cbeb202bf7c113ff9be5358367c as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM docker.io/library/alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="wp-matrix" LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-matrix" LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-matrix" LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-matrix" COPY --from=build /src/dist/wp-matrix /bin/wp-matrix ENTRYPOINT [ "/bin/wp-matrix" ]