From 643b792069d0b579407a31fcacd543c6148e46ff Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Wed, 28 Sep 2022 19:43:54 +0200 Subject: [PATCH] docker for arm platform #383 --- .github/workflows/build-docker-beta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docker-beta.yaml b/.github/workflows/build-docker-beta.yaml index 8ce9ea0a..bbc69cd6 100644 --- a/.github/workflows/build-docker-beta.yaml +++ b/.github/workflows/build-docker-beta.yaml @@ -61,7 +61,7 @@ jobs: - name: Build docker image run: | - docker build ./docker -t dbgate + docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 ./docker -t dbgate - name: Push docker image run: | docker tag dbgate dbgate/dbgate:beta @@ -72,7 +72,7 @@ jobs: - name: Build alpine docker image run: | - docker build ./docker -t dbgate -f docker/Dockerfile-alpine + docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 ./docker -t dbgate -f docker/Dockerfile-alpine - name: Push alpine docker image run: | docker tag dbgate dbgate/dbgate:beta-alpine