2024-10-19 01:40:22 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23@sha256:cc637ce72c1db9586bd461cc5882df5a1c06232fd5dfe211d3b32f79c5a999fc as build
|
2023-12-22 23:59:23 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2024-09-07 00:23:11 +00:00
|
|
|
FROM docker.io/library/alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
|
2023-12-22 23:59:23 +00:00
|
|
|
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.title="wp-git-clone"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-git-clone"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-git-clone"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-git-clone"
|
|
|
|
|
|
|
|
RUN apk --update add --no-cache git openssh curl git-lfs && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
COPY --from=build /src/dist/wp-git-clone /bin/wp-git-clone
|
|
|
|
ENTRYPOINT [ "/bin/wp-git-clone" ]
|