ci: build for linux/arm64 (Raspberry Pi 5 target)
Some checks failed
Build & Publish Docker Image / build-and-push (push) Failing after 3m48s

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) <noreply@anthropic.com>
This commit is contained in:
2026-04-17 15:57:55 +02:00
parent 3eb89cc5d6
commit 5fbb90745d

View File

@@ -47,7 +47,9 @@ jobs:
with: with:
context: . context: .
push: true 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 }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: type=gha