1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

use ostreecontainer

This commit is contained in:
Jason N. 2024-02-14 13:31:51 +00:00
parent 1828adb299
commit 4da160c608
3 changed files with 8 additions and 0 deletions

View file

@ -39,6 +39,7 @@ jobs:
dnf install -y \
lorax \
xorriso \
podman \
git \
rpm-ostree
@ -57,6 +58,8 @@ jobs:
--macboot --noupgrade \
--repo /etc/yum.repos.d/fedora.repo \
--repo /etc/yum.repos.d/fedora-updates.repo \
--add-template ${GITHUB_WORKSPACE}/lorax_templates/embed_image.tmpl \
--add-template ${GITHUB_WORKSPACE}/lorax_templates/set_installer.tmpl \
--rootfs-size 9 \
./results/

View file

@ -0,0 +1,4 @@
<%page args="root"/>
runcmd podman pull ghcr.io/ublue-os/base-main:39
runcmd podman save -f oci-archive -o ${root}/base-main-39.tar ghcr.io/ublue-os/base-main:39
runcmd podman rmi ghcr.io/ublue-os/base-main:39

View file

@ -0,0 +1 @@
append usr/share/anaconda/interactive-defaults.ks "ostreecontainer --url=file:///base-main-39.tar --transport=oci-archive --no-signature-verification"