2023-07-05 09:59:50 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.20@sha256:20ee7c8a2be2fb81580e4db1b036c7237a363bac2d0f6b773e7291370d588d7b as build
|
2023-01-14 21:46:03 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2023-06-15 09:02:22 +00:00
|
|
|
FROM alpine:3.18@sha256:82d1e9d7ed48a7523bdebc18cf6290bdb97b82302a8a9c27d4fe885949ea94d1
|
2022-11-27 13:33:39 +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-git-action"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-git-action"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-git-action"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-git-action"
|
|
|
|
|
2022-12-02 21:21:35 +00:00
|
|
|
RUN apk --update add --no-cache git rsync && \
|
2022-11-29 09:51:50 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
2023-01-14 21:46:03 +00:00
|
|
|
COPY --from=build /src/dist/drone-git-action /bin/drone-git-action
|
2022-11-27 13:33:39 +00:00
|
|
|
ENTRYPOINT ["/bin/drone-git-action"]
|