Skip to content

Commit

Permalink
Merge pull request #51 from M82-project/sebdraven-patch-1
Browse files Browse the repository at this point in the history
Create docker-image.yml
  • Loading branch information
BartM82 authored Dec 28, 2023
2 parents de51481 + 35f6805 commit 616d35f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
push_to_registries:
name: Build Docker images
runs-on: ubuntu-latest
steps:
- name: Check out the repo
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 images
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/check/Dockerfile
platforms: linux/amd64,linux/arm64
push: false

0 comments on commit 616d35f

Please sign in to comment.