Daniel Kempkens
586a3eaa49
All checks were successful
Build Image / build-and-push-image (push) Successful in 1m27s
20 lines
407 B
YAML
20 lines
407 B
YAML
name: Build Image
|
|
|
|
on:
|
|
push:
|
|
branches: ['master']
|
|
|
|
jobs:
|
|
build-and-push-image:
|
|
runs-on: ubuntu-latest-amd64
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Buildah
|
|
run: apt-get -y update && apt-get -y install buildah
|
|
|
|
- name: Build Container
|
|
run: |
|
|
export BUILDAH_ISOLATION=chroot
|
|
buildah --storage-driver=vfs bud -f ./Dockerfile .
|