From 92bc883b5bc789decf1607d4aeff1e6c72620520 Mon Sep 17 00:00:00 2001 From: Owen Date: Sat, 15 Feb 2025 17:53:08 -0500 Subject: [PATCH] Add arm build --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3dbb196..a3199f2 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ docker-build-release: echo "Error: tag is required. Usage: make build-all tag="; \ exit 1; \ fi - docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/newt:latest -f Dockerfile --push . - docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/newt:$(tag) -f Dockerfile --push . + docker buildx build --platform linux/arm/v7,linux/arm64,linux/amd64 -t fosrl/newt:latest -f Dockerfile --push . + docker buildx build --platform linux/arm/v7,linux/arm64,linux/amd64 -t fosrl/newt:$(tag) -f Dockerfile --push . build: docker build -t fosrl/newt:latest .