From e9d32e1dc02d811a398486bf5ba7f0efa6dd88a9 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Tue, 19 Aug 2025 21:03:46 +0200 Subject: [PATCH] Chroot... --- .gitea/workflows/build-oci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-oci.yaml b/.gitea/workflows/build-oci.yaml index 772beed..74c4999 100644 --- a/.gitea/workflows/build-oci.yaml +++ b/.gitea/workflows/build-oci.yaml @@ -25,6 +25,7 @@ jobs: - name: Install Buildah run: |- + env if ! command -v buildah 2>/dev/null; then echo "Install Buildah" sudo apt-get update @@ -35,7 +36,7 @@ jobs: - name: Build and tag run: |- - buildah build --build-arg VERSION=$VERSION -t katenary -f ./oci/katenary/Containerfile . + buildah build --isolation=chroot --build-arg VERSION=$VERSION -t katenary -f ./oci/katenary/Containerfile . buildah tag katenary $REGISTRY/${IMAGE_NAME,,}:$VERSION buildah tag katenary $REGISTRY/${IMAGE_NAME,,}:latest