mirror of
https://github.com/thegeeklab/drone-docker-buildx.git
synced 2024-11-04 20:10:41 +00:00
27 lines
1.2 KiB
Docker
27 lines
1.2 KiB
Docker
FROM arm64v8/docker:20.10-dind
|
|
|
|
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 BUILDX_VERSION
|
|
|
|
# renovate: datasource=github-releases depName=docker/buildx
|
|
ENV BUILDX_VERSION="${BUILDX_VERSION:-0.5.0}"
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
RUN apk --update add --virtual .build-deps curl && \
|
|
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}/buildx-v${BUILDX_VERSION}.linux-amd64" && \
|
|
chmod 755 /usr/lib/docker/cli-plugins/docker-buildx && \
|
|
apk del .build-deps && \
|
|
rm -rf /var/cache/apk/* && \
|
|
rm -rf /tmp/*
|
|
|
|
ADD release/arm64/drone-docker-buildx /bin/
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "drone-docker-buildx"]
|