From ce0c1e082beb4cee5792671c24bd3e7471530c8a Mon Sep 17 00:00:00 2001 From: sharpenedblade Date: Sun, 12 Apr 2026 15:27:04 -0700 Subject: [PATCH] Fix image-builder cli args --- build-iso.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build-iso.sh b/build-iso.sh index 197e6cd..9f63956 100755 --- a/build-iso.sh +++ b/build-iso.sh @@ -6,8 +6,6 @@ INSTALLER_IMAGE="ghcr.io/t2linux/fedora-silverblue-installer:43" mkdir -p build -sudo podman pull "$IMAGE" "$INSTALLER_IMAGE" - sudo podman run --rm -it --privileged \ --platform linux/amd64 \ --privileged \ @@ -15,6 +13,7 @@ sudo podman run --rm -it --privileged \ -v /var/lib/containers/storage:/var/lib/containers/storage \ -v "$PWD/build":/output \ ghcr.io/osbuild/image-builder-cli build \ - --bootc-default-fs btrfs \ - --bootc-ref "$INSTALLER_IMAGE" \ - --bootc-installer-payload-ref "$IMAGE" + bootc-installer \ + --bootc-default-fs btrfs \ + --bootc-ref "$INSTALLER_IMAGE" \ + --bootc-installer-payload-ref "$IMAGE"