From c199430aa574de4f836e80c39848890477727d5a Mon Sep 17 00:00:00 2001
From: Przemek Szalko
Date: Fri, 28 Nov 2025 14:30:56 +0100
Subject: [PATCH] Added support for Apple Silicon
---
bin/build-all.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/build-all.sh b/bin/build-all.sh
index c2479a2..23360d6 100755
--- a/bin/build-all.sh
+++ b/bin/build-all.sh
@@ -34,7 +34,7 @@ for i in ./build/*/; do
echo "${text_bold}* Building ${image} ${text_normal}"
# Builds image and check for return code
- if docker build --pull -t "${image}" "./build/${version}"; then
+ if docker buildx build --push --platform linux/arm64,linux/amd64 -t "${image}" "./build/${version}"; then
build_done+=( "${image}" )
else
echo "${text_bold}${text_red}* ERROR when building ${image} ${text_normal}"