2022-05-27 02:55:31 +00:00
|
|
|
FROM docker:20.10-dind@sha256:88bc41871a4f89d258042f8e7ae1d34de7fd2604eaeedc9fd955121eedfe1cf6
|
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
|
2022-04-04 07:04:19 +00:00
|
|
|
ENV BUILDX_VERSION="${BUILDX_VERSION:-v0.8.2}"
|
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-amd64" && \
|
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/*
|
|
|
|
|
2022-04-25 10:51:42 +00:00
|
|
|
ADD dist/drone-docker-buildx /bin/
|
2021-01-10 22:47:55 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "drone-docker-buildx"]
|