2024-10-02 01:34:49 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23@sha256:adee809c2d0009a4199a11a1b2618990b244c6515149fe609e2788ddf164bd10 as build
|
2024-01-04 22:26:33 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
RUN make build
|
|
|
|
|
2024-09-26 01:10:08 +00:00
|
|
|
FROM docker.io/library/alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
|
2024-01-04 22:26:33 +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-gitea-release"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-gitea-release"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-gitea-release"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-gitea-release"
|
|
|
|
|
|
|
|
COPY --from=build /src/dist/wp-gitea-release /bin/wp-gitea-release
|
|
|
|
ENTRYPOINT ["/bin/wp-gitea-release"]
|