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