Add buildx Dockerfile

This commit is contained in:
Darren Clarke 2023-08-07 08:50:12 +02:00
parent eed88d03db
commit c47514d2f0
2 changed files with 22 additions and 0 deletions

11
docker/buildx/Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM docker:git
RUN set -ex; \
apk add --no-cache --update \
make \
curl \
bash \
jq ;
COPY --from=docker/buildx-bin /buildx /usr/libexec/docker/cli-plugins/docker-buildx
RUN docker buildx install
RUN docker buildx version