From dda73218115e22cfaae8fea983fb179e49e3ef1e Mon Sep 17 00:00:00 2001 From: Youngjin Jo Date: Fri, 12 Apr 2024 10:44:53 +0900 Subject: [PATCH] chore: update Makefile to build x86/64 arch when you using arm arch Signed-off-by: Youngjin Jo --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6407362c8..43017bc94 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ endef define set_build_env git submodule init git submodule update - docker build -t ${DOCKER_NAME} . + docker build --platform=linux/x86_64 -t ${DOCKER_NAME} . endef define build