From c9afabb81fab6e3985d4a423d1dd422144cfffb5 Mon Sep 17 00:00:00 2001 From: thislight Date: Sun, 14 Jul 2024 15:25:10 +0800 Subject: [PATCH] fedora-40: fix no buildah --- .forgejo/workflows/build-fedora-40.yml | 2 ++ fedora-40-minimal/Containerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/build-fedora-40.yml b/.forgejo/workflows/build-fedora-40.yml index 50ae286..e4ee391 100644 --- a/.forgejo/workflows/build-fedora-40.yml +++ b/.forgejo/workflows/build-fedora-40.yml @@ -19,6 +19,8 @@ jobs: container: image: code.lightstands.xyz/standcoded/fedora:40 steps: + - name: Install tools + run: dnf install -y --setopt install_weak_deps=False buildah - name: Checkout uses: actions/checkout@v3 - name: Fulfill Package Manager Cache diff --git a/fedora-40-minimal/Containerfile b/fedora-40-minimal/Containerfile index 0ca6035..af29852 100644 --- a/fedora-40-minimal/Containerfile +++ b/fedora-40-minimal/Containerfile @@ -12,7 +12,7 @@ RUN dnf install -y --setopt install_weak_deps=False clang gcc RUN dnf install -y --setopt install_weak_deps=False coreutils bash aria2 jq yq zstd brotli sqlite -RUN dnf group install -y --setopt install_weak_deps=False "Container Management" --exclude container-selinux +RUN dnf install -y --setopt install_weak_deps=False buildah podman --exclude container-selinux # We don't clean up dnf cache since user may want to install packages for their use