From 78518fba5d5672a2571800d395d844a0d3b1cdbf Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 29 Dec 2025 20:31:55 -0600 Subject: [PATCH] Use chroot isolation for Buildah --- .gitea/workflows/buildah-check.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/buildah-check.yaml b/.gitea/workflows/buildah-check.yaml index 5c2c6d9..2d23ece 100644 --- a/.gitea/workflows/buildah-check.yaml +++ b/.gitea/workflows/buildah-check.yaml @@ -22,4 +22,5 @@ jobs: # Buildah needs some storage configuration tweaks for running inside a container # We use the 'vfs' driver which is slow but works reliably inside containers without special privileges - buildah build --storage-driver=vfs -t test-image . + # We use '--isolation=chroot' to avoid cgroup permission issues inside the runner container + buildah build --storage-driver=vfs --isolation=chroot -t test-image .