0
0
mirror of https://github.com/thegeeklab/wp-docker-buildx.git synced 2024-09-19 15:12:44 +02:00
wp-docker-buildx/Containerfile.multiarch
renovate[bot] eaf951aa71
chore(deps): update dependency docker/buildx to v0.17.1 (#237)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-15 20:21:35 +02:00

42 lines
1.6 KiB
Plaintext

FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23@sha256:2fe82a3f3e006b4f2a316c6a21f62b66e1330ae211d039bb8d1128e12ed57bf1 as build
ARG TARGETOS
ARG TARGETARCH
ADD . /src
WORKDIR /src
RUN make build
FROM docker:27.2-dind@sha256:b936b8df214a188dab8643592b209be4aaef74c5c3f84488fc77be955869fd60
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.17.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"]