2020-06-26 15:51:13 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2021-03-26 18:34:39 +01:00
|
|
|
# this require docker buildx plugin
|
|
|
|
# https://github.com/docker/buildx#installing
|
|
|
|
# may need to execute this first
|
|
|
|
# docker buildx create --use
|
|
|
|
# Register Arm executables to run on x64 machines
|
2021-09-20 23:29:44 +02:00
|
|
|
docker run --rm --privileged docker/binfmt:a7996909642ee92942dcd6cff44b9b95f08dad64
|
2021-03-26 18:34:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
docker buildx build \
|
|
|
|
--push \
|
|
|
|
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
|
|
|
|
--tag xsangle/antosaio:latest .
|