Try using the buildah/stable image from redhat

HubbeKing-multiplatform-builds
Hubbe 6 days ago committed by GitHub
parent a1337b2d0a
commit ce3f91444e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,6 +20,9 @@ permissions:
jobs:
build:
runs-on: ubuntu-24.04
# run jobs in buildah containers, since ubuntu is bad at keeping packages updated
container:
image: quay.io/buildah/stable:latest
strategy:
fail-fast: false
matrix:
@ -53,14 +56,9 @@ jobs:
- name: Install QEMU
# qemu-user-static is used by buildah to do multiplatform builds
# the buildah image is fedora-based, hence we use dnf
run: |
sudo apt update
sudo apt install -y qemu-user-static
- name: Update buildah to latest
run: |
sudo apt update
sudo apt install -y buildah
sudo dnf install -y qemu-user-static
- name: Log into ghcr.io
uses: docker/login-action@v3

Loading…
Cancel
Save