2023-02-04 14:09:35 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.19@sha256:9e577b08280c17512118548d09e335b98c48ac915247e8d1d076003bbfcf7c0c as build
|
2023-01-14 21:43:15 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2023-01-09 20:19:14 +00:00
|
|
|
FROM alpine:3.17@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a
|
2021-09-13 21:00:00 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2023-01-14 21:43:15 +00:00
|
|
|
COPY --from=build /src/dist/drone-matrix /bin/drone-matrix
|
2021-09-13 21:00:00 +00:00
|
|
|
ENTRYPOINT [ "/bin/drone-matrix" ]
|