From 3867aec0fd04a6f8f03cd64d7e25529a74fd1368 Mon Sep 17 00:00:00 2001 From: Homing So Date: Mon, 30 Oct 2023 15:44:04 +0800 Subject: [PATCH] feat: add arm64 support Signed-off-by: Homing So --- docker-bake.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 2fa7d3b..7e920cb 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -34,7 +34,7 @@ target "moses-devel" { notequal("", VERSION) ? "${REPO}/moses:devel-${VERSION}" : "", "${REPO}/moses:devel", ] - platforms = ["linux/amd64"] + platforms = ["linux/amd64", "linux/arm64"] } target "moses-runtime" { @@ -53,5 +53,5 @@ target "moses-runtime" { "${REPO}/moses:runtime", "${REPO}/moses:latest", ] - platforms = ["linux/amd64"] + platforms = ["linux/amd64", "linux/arm64"] } \ No newline at end of file