mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-11-23 14:00:22 -08:00
17 lines
692 B
Makefile
17 lines
692 B
Makefile
registry = registry.zerotier.com/zerotier
|
|
|
|
all: controller-builder controller-runbase
|
|
|
|
buildx:
|
|
@echo "docker buildx create"
|
|
# docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
|
docker run --privileged --rm tonistiigi/binfmt --install all
|
|
@echo docker buildx create --name multiarch --driver docker-container --use
|
|
@echo docker buildx inspect --bootstrap
|
|
|
|
controller-builder: buildx
|
|
docker buildx build --no-cache --platform linux/amd64,linux/arm64 -t $(registry)/ctlbuild:latest -f Dockerfile.builder . --push
|
|
|
|
controller-runbase: buildx
|
|
docker buildx build --no-cache --platform linux/amd64,linux/arm64 -t $(registry)/ctlrun:latest -f Dockerfile.run_base . --push
|