From 4e1509704d03ebe6a8e555d206776ccd4f98d0b7 Mon Sep 17 00:00:00 2001 From: vran Date: Thu, 9 Jun 2022 17:49:24 +0800 Subject: [PATCH] feat: docker image support arm platform (#236) --- .github/workflows/auto-docker-latest.yml | 1 + .github/workflows/manual-release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/auto-docker-latest.yml b/.github/workflows/auto-docker-latest.yml index 7b9ac01..237b956 100644 --- a/.github/workflows/auto-docker-latest.yml +++ b/.github/workflows/auto-docker-latest.yml @@ -41,5 +41,6 @@ jobs: with: context: . file: ./local.Dockerfile + platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/databasir:latest \ No newline at end of file diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index c8e3023..3688fb1 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -50,5 +50,6 @@ jobs: with: context: . file: ./local.Dockerfile + platforms: linux/amd64,linux/arm64 push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/databasir:${{ github.event.inputs.tag }} \ No newline at end of file