mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-09 18:30:40 +00:00
22 lines
822 B
Docker
22 lines
822 B
Docker
FROM --platform=$BUILDPLATFORM golang:1.20@sha256:6e835db45c7d88e12b057c0638814c2b266f69143437e4110b8bec5cfc7fa53b as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM alpine:3.17@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.title="drone-s3-sync"
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-s3-sync"
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-s3-sync"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-s3-sync"
|
|
|
|
COPY --from=build /src/dist/drone-s3-sync /bin/drone-s3-sync
|
|
ENTRYPOINT ["/bin/drone-s3-sync"]
|