docker for arm platform #383

This commit is contained in:
Jan Prochazka 2022-09-28 19:43:54 +02:00
parent b4d0ccbd8c
commit 643b792069

View File

@ -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