mirror of
https://github.com/thegeeklab/drone-docker-buildx.git
synced 2024-11-05 04:20:41 +00:00
41 lines
1.6 KiB
Docker
41 lines
1.6 KiB
Docker
FROM --platform=$BUILDPLATFORM golang:1.19@sha256:bb9811fad43a7d6fd2173248d8331b2dcf5ac9af20976b1937ecd214c5b8c383 as build
|
|
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
RUN make build
|
|
|
|
FROM docker:20.10-dind@sha256:c8bb6fa5388b56304dd770c4bc0478de81ce18540173b1a589178c0d31bfce90
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
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.2}"
|
|
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
RUN apk --update add --virtual .build-deps curl && \
|
|
apk --update add --no-cache git && \
|
|
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/dist/drone-docker-buildx /bin/drone-docker-buildx
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "drone-docker-buildx"]
|