Skip to content

Commit

Permalink
Add GitHub workflow to build Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
dalbani committed Oct 15, 2023
1 parent 9bd6e9b commit 859ffef
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Inspired by https://docs.github.com/en/actions/publishing-packages/publishing-docker-images#publishing-images-to-github-packages.
name: Build Docker image

on:
push:
branches:
- master
pull_request: null

jobs:
build-image:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .

0 comments on commit 859ffef

Please sign in to comment.