mirror of
https://github.com/thegeeklab/wp-matrix.git
synced 2024-11-09 18:10:39 +00:00
22 lines
817 B
Docker
22 lines
817 B
Docker
FROM --platform=$BUILDPLATFORM golang:1.20@sha256:7954299532c2a54dd5d68d81a34316d3a5d26029dd78bd40a11d001b9f79985d as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM alpine:3.18@sha256:82d1e9d7ed48a7523bdebc18cf6290bdb97b82302a8a9c27d4fe885949ea94d1
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
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" ]
|