Add Dockerfile and github workflow to push docker image to ghcr #3
Workflow file for this run
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
name: Status checks | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# Make it possible to trigger the checks manually. | |
workflow_dispatch: | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# We only run the build stage to prevent that the IRMA schemes are downloaded. | |
- name: Run Dockerfile build stage | |
run: docker build -t privacybydesign/angrygames:build . | |