From 8e0475c8a7ceb2e1ccb814799088cfce455b960a Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sat, 29 Nov 2025 21:18:54 +0530 Subject: [PATCH] build arm64 image --- .drone.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 4278ea9..092472b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -69,11 +69,17 @@ steps: commands: - IMAGE_TAG=$(cat /drone/src/LATEST_TAG.txt | tr -d '\n') - echo "🔨 Building Nakama image lila-games/nakama-server:$IMAGE_TAG" + # Enable buildx + - docker buildx create --use + + # Build for ARM64 - | - docker build \ + docker buildx build \ + --platform linux/arm64 \ --network=host \ -t lila-games/nakama-server:$IMAGE_TAG \ -t lila-games/nakama-server:latest \ + --push \ /drone/src # -----------------------------------------------------