FROM --platform=$BUILDPLATFORM golang:1.20@sha256:403f48633fb5ebd49f9a2b6ad6719f912df23dae44974a0c9445be331e72ff5e as build ARG TARGETOS ARG TARGETARCH ADD . /src WORKDIR /src RUN make build FROM docker:23.0-dind@sha256:a2e34bde4cb23eaef4f3d5016c78f4a7ee06b65f80d07c7ba69a1e262977a97a LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="drone-docker-buildx" LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-docker-buildx" LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-docker-buildx" LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-docker-buildx" ARG TARGETOS ARG TARGETARCH ARG BUILDX_VERSION # renovate: datasource=github-releases depName=docker/buildx ENV BUILDX_VERSION="${BUILDX_VERSION:-v0.10.4}" 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/drone-docker-buildx /bin/drone-docker-buildx ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "drone-docker-buildx"]