2023-02-05 14:45:06 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.19@sha256:09009d430dbf3fb80a4731546eefb1603f1fdb36fe6354eab138d8275a85e89f as build
|
2023-01-14 21:42:00 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2023-01-09 20:59:44 +00:00
|
|
|
FROM alpine:3.17@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a
|
2020-09-19 22:00:34 +00:00
|
|
|
|
2021-01-17 19:14:01 +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-github-comment"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-github-comment"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-github-comment"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment"
|
2020-09-19 22:00:34 +00:00
|
|
|
|
2023-01-14 21:42:00 +00:00
|
|
|
COPY --from=build /src/dist/drone-github-comment /bin/drone-github-comment
|
2022-04-25 10:53:45 +00:00
|
|
|
ENTRYPOINT ["/bin/drone-github-comment"]
|