From d7e67043143940196c82316796d6e6d6f1e2252d Mon Sep 17 00:00:00 2001 From: Joris Coenen Date: Fri, 30 Apr 2021 16:39:05 +0200 Subject: [PATCH] Add arm/v7 image Needed to run on a Raspberry Pi. Arm/v6 would also be nice, but this does not seem to be supported by the current base image gcr.io/distroless/static:nonroot. So let's go with this for now. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe0180c..90a7e3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: with: context: . file: Dockerfile - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64,linux/arm64,linux/arm/v7 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}