2022-02-14 09:44:05 +00:00
|
|
|
FROM arm64v8/docker:20.10-dind@sha256:af0ce9eee4461072754e6f35f18c219ca6981a16c0042c92bbb4823ce753faa2
|
2021-01-10 22:47:55 +00:00
|
|
|
|
|
|
|
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
|
2021-11-26 13:40:29 +00:00
|
|
|
ENV BUILDX_VERSION="${BUILDX_VERSION:-v0.7.1}"
|
2021-02-15 19:18:31 +00:00
|
|
|
|
2021-01-10 22:47:55 +00:00
|
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
|
|
|
|
RUN apk --update add --virtual .build-deps curl && \
|
|
|
|
mkdir -p /usr/lib/docker/cli-plugins/ && \
|
2021-02-15 19:18:31 +00:00
|
|
|
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}.linux-arm64" && \
|
2021-01-10 22:47:55 +00:00
|
|
|
chmod 755 /usr/lib/docker/cli-plugins/docker-buildx && \
|
|
|
|
apk del .build-deps && \
|
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
2021-01-10 23:18:35 +00:00
|
|
|
ADD release/arm64/drone-docker-buildx /bin/
|
2021-01-10 22:47:55 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "drone-docker-buildx"]
|