mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-14 19:10:42 +00:00
a00e1b5236
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22 lines
879 B
Plaintext
22 lines
879 B
Plaintext
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23@sha256:613a108a4a4b1dfb6923305db791a19d088f77632317cfc3446825c54fb862cd as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM docker.io/library/alpine:3.20@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5
|
|
|
|
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"]
|