From e8fbd4e8cc0fe893a38101afad615f88d8a39029 Mon Sep 17 00:00:00 2001 From: IvanHunters Date: Wed, 29 Apr 2026 23:56:09 +0300 Subject: [PATCH] fix(dashboard): drop arm64 platform to fix CI build Default docker driver does not support multi-platform builds. All other packages in make build use linux/amd64 only. Signed-off-by: IvanHunters --- packages/system/dashboard/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/dashboard/Makefile b/packages/system/dashboard/Makefile index 3e9566fc..ed2ba890 100644 --- a/packages/system/dashboard/Makefile +++ b/packages/system/dashboard/Makefile @@ -18,7 +18,7 @@ image-console: --file .tmp-cozystack-ui/Containerfile \ --provenance false \ --builder=$(BUILDER) \ - --platform=linux/amd64,linux/arm64 \ + --platform=linux/amd64 \ --tag $(REGISTRY)/cozystack-ui:$(call settag,$(TAG)) \ --cache-from type=registry,ref=$(REGISTRY)/cozystack-ui:latest \ --cache-to type=inline \