From 5fbb90745d2c7217f3cb9d646814c5d4894f230e Mon Sep 17 00:00:00 2001 From: Hendrik Date: Fri, 17 Apr 2026 15:57:55 +0200 Subject: [PATCH] ci: build for linux/arm64 (Raspberry Pi 5 target) Runner is arm64, so native build is much faster than amd64-via-QEMU. Dev/test amd64 images can still be built locally with 'docker build'. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/docker.yml b/.gitea/workflows/docker.yml index e43e14b..3a80c24 100644 --- a/.gitea/workflows/docker.yml +++ b/.gitea/workflows/docker.yml @@ -47,7 +47,9 @@ jobs: with: context: . push: true - platforms: linux/amd64 + # Target: Raspberry Pi 5 (arm64). Runner is arm64 too, so this is native + fast. + # amd64 is buildable locally via `docker build` on dev machines. + platforms: linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha