Skip to content

Commit

Permalink
Add image build action on prs and pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
fdegir committed May 2, 2024
1 parent 81d6d0b commit 92cc0df
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build_image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: [ push, pull_request ]
name: Build Image

jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 the image
run: docker build -t eib:dev .

0 comments on commit 92cc0df

Please sign in to comment.