From 74eba5fc2982db9fa6c0717c258b9944853974c8 Mon Sep 17 00:00:00 2001 From: Olof Pettersson Date: Tue, 2 Dec 2025 13:47:13 +0100 Subject: [PATCH] Config with storage driver --- .gitea/workflows/scripts/build-with-buildah.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/scripts/build-with-buildah.sh b/.gitea/workflows/scripts/build-with-buildah.sh index d6a27b18d84..31ce902ec70 100644 --- a/.gitea/workflows/scripts/build-with-buildah.sh +++ b/.gitea/workflows/scripts/build-with-buildah.sh @@ -25,7 +25,7 @@ CTR=$(buildah from --tls-verify=false --storage-driver=vfs "$FULL_IMAGE_URL") # --- 4. CONFIGURE CONTAINER --- # FIX: buildah run doesn't have --working-dir. # We use 'buildah config' to set it on the container instance instead. -buildah config --workingdir /src "$CTR" +buildah config --storage-driver=vfs --workingdir /src "$CTR" # --- 5. EXECUTE BUILD --- echo "Running SCons inside container..."