Merge pull request #164 from Manawyrm/master

CI: switch to docker buildx and enable arm64 docker images
This commit is contained in:
Cracker 2023-03-15 22:56:25 +01:00 committed by GitHub
commit c572f2b85d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,5 +14,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag rofl256/whiteboard:$(date +%s)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: build the image
run: |
docker buildx build \
--file Dockerfile \
--tag rofl256/whiteboard:$(date +%s) \
--platform linux/amd64,linux/arm64 .