Merge pull request #201 from cracker0dks/dependabot/npm_and_yarn/mult… #248
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do clean build of the docker image | |
name: Docker Image CI (also tests build) | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 . |