mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-09 17:20:39 +00:00
36018940e1
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.22@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM docker:26.1-dind@sha256:a811114bcd41954bc9b6577469ce7e648ee600c864e815e535aac79e50439352
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.title="wp-docker-buildx"
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wp-docker-buildx"
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wp-docker-buildx"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wp-docker-buildx"
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
ARG BUILDX_VERSION
|
|
|
|
# renovate: datasource=github-releases depName=docker/buildx
|
|
ENV BUILDX_VERSION="${BUILDX_VERSION:-v0.14.1}"
|
|
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
RUN apk --update add --virtual .build-deps curl && \
|
|
apk --update add --no-cache git coredns && \
|
|
mkdir -p /usr/lib/docker/cli-plugins/ && \
|
|
curl -SsL -o /usr/lib/docker/cli-plugins/docker-buildx \
|
|
"https://github.com/docker/buildx/releases/download/v${BUILDX_VERSION##v}/buildx-v${BUILDX_VERSION##v}.${TARGETOS:-linux}-${TARGETARCH:-amd64}" && \
|
|
chmod 755 /usr/lib/docker/cli-plugins/docker-buildx && \
|
|
apk del .build-deps && \
|
|
rm -rf /var/cache/apk/* && \
|
|
rm -rf /tmp/*
|
|
|
|
COPY --from=build /src/Corefile /etc/coredns/Corefile
|
|
COPY --from=build /src/dist/wp-docker-buildx /bin/wp-docker-buildx
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "wp-docker-buildx"]
|