From 823ee0766ddaa38a791debae9ff7eb1e1ca413b0 Mon Sep 17 00:00:00 2001 From: Corentin Garcia Date: Sat, 17 Jun 2023 23:04:22 +0200 Subject: [PATCH] feat: support more CPU architectures --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a87fbe2..9520f11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: uses: docker/build-push-action@v4 with: context: . - platforms: linux/arm64/v8, linux/amd64 + platforms: linux/amd64, linux/ppc64le, linux/arm/v5, linux/arm/v7, linux/arm64/v8 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/README.md b/README.md index c79048f..11e864f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ There are multiple tags: - `dev` for the latest commit on the master branch - Version tags (like `0.1.1`, `0.1.2`) for specific versions -The image supports linux/amd64 or linux/arm64 architectures. +The image supports the following platforms: linux/amd64, linux/ppc64le, linux/arm/v5, linux/arm/v7 and linux/arm64/v8 . ### Without Docker