Adding a github workflow to automate arm docker builds

This commit is contained in:
jimmycleuren 2021-03-22 20:11:28 +01:00
parent c674c7a4b6
commit 9c7fd6554b

24
.github/workflows/docker.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Build docker image
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: build the image
run: |
docker buildx build --push \
--tag jgeusebroek/docker-spotweb:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .