From b47466324bf29cac1ab8fbda7eb356b0b7de5b01 Mon Sep 17 00:00:00 2001 From: Alexandre ABRIOUX Date: Sat, 6 Jul 2024 12:20:56 +0200 Subject: [PATCH] chore(docker): disable support for aarch64 --- docker-bake.hcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index b4ae906..f2ae57f 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -27,6 +27,7 @@ target "image-all" { inherits = ["image"] platforms = [ "linux/amd64", - "linux/arm64" + // aarch64 not supported at the moment, see https://github.com/alexandre-abrioux/golem-node/issues/44#issuecomment-2211726849 + // "linux/arm64" ] }