At the moment the bib_image variable in the Justfile is set to the following:
export bib_image := env("BIB_IMAGE", "quay.io/centos-bootc/bootc-image-builder:latest@sha256:903c01d110b8533f8891f07c69c0ba2377f8d4bc7e963311082b7028c04d529d")
This bootc image has a bug that generates the following error when trying to create an iso:
Traceback (most recent call last):
File "/run/osbuild/bin/org.osbuild.grub2.iso", line 136, in
ret = main(args["tree"], args["options"])
File "/run/osbuild/bin/org.osbuild.grub2.iso", line 70, in main
vendor = options["vendor"]
~~~~~~~^^^^^^^^^^
KeyError: 'vendor'
Finished module org.osbuild.grub2.iso
Finished pipeline efiboot-tree
manifest - failed
Output:
Failed
error: Recipe _build-bib failed with exit code 1
I think it would be good to update the Justfile bib_image variable to use a more recent image that has this bug fixed, like the following:
export bib_image := env("BIB_IMAGE", "quay.io/centos-bootc/bootc-image-builder:latest@sha256:eb2f5db03a3c59e21407579e8cb9a2a9a79af5d103758b6b768b4abbe5b44468")
It's not a very big deal, but I think it's nice to provide a Justfile that works out of the box when cloning the template, without having to remember each time to change the image 😄
At the moment the bib_image variable in the Justfile is set to the following:
export bib_image := env("BIB_IMAGE", "quay.io/centos-bootc/bootc-image-builder:latest@sha256:903c01d110b8533f8891f07c69c0ba2377f8d4bc7e963311082b7028c04d529d")This bootc image has a bug that generates the following error when trying to create an iso:
I think it would be good to update the Justfile bib_image variable to use a more recent image that has this bug fixed, like the following:
export bib_image := env("BIB_IMAGE", "quay.io/centos-bootc/bootc-image-builder:latest@sha256:eb2f5db03a3c59e21407579e8cb9a2a9a79af5d103758b6b768b4abbe5b44468")It's not a very big deal, but I think it's nice to provide a Justfile that works out of the box when cloning the template, without having to remember each time to change the image 😄