5 lines
176 B
Docker
5 lines
176 B
Docker
|
FROM docker:dind
|
||
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
||
|
COPY --from=docker/buildx-bin /buildx /usr/libexec/docker/cli-plugins/docker-buildx
|
||
|
RUN apk add git
|
||
|
COPY ./rootfs /
|