first actual commit

This commit is contained in:
Charles 2024-10-13 16:27:11 -04:00
commit a82db08bc7
4 changed files with 41 additions and 0 deletions

28
Containerfile Normal file
View File

@ -0,0 +1,28 @@
FROM quay.io/almalinuxorg/almalinux-bootc:9
ARG DNF_EXCLUSIONS="PackageKit,PackageKit-command-not-found,kmod-kvdo,rootfiles,vdo"
RUN dnf -y -x ${DNF_EXCLUSIONS} install alsa-sof-firmware
RUN dnf -y -x ${DNF_EXCLUSIONS} install eog
RUN dnf -y -x ${DNF_EXCLUSIONS} install firefox
RUN dnf -y -x ${DNF_EXCLUSIONS} install gdm
RUN dnf -y -x ${DNF_EXCLUSIONS} install gedit
RUN dnf -y -x ${DNF_EXCLUSIONS} install git
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-calculator
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-disk-utility
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-shell
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-software
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-system-monitor
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-terminal
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-terminal-nautilus
RUN dnf -y -x ${DNF_EXCLUSIONS} install gnome-tweaks
RUN dnf -y -x ${DNF_EXCLUSIONS} install grubby
RUN dnf -y -x ${DNF_EXCLUSIONS} install man
RUN dnf -y -x ${DNF_EXCLUSIONS} install man-db
RUN dnf -y -x ${DNF_EXCLUSIONS} install nautilus
RUN dnf -y -x ${DNF_EXCLUSIONS} install NetworkManager-wifi
RUN dnf -y -x ${DNF_EXCLUSIONS} install NetworkManager-wwan
RUN dnf -y -x ${DNF_EXCLUSIONS} install wget
RUN dnf -y -x ${DNF_EXCLUSIONS} install wireless-regdb
RUN dnf -y -x ${DNF_EXCLUSIONS} install wpa_supplicant
RUN rm -v /usr/lib/systemd/system/local-fs.target.wants/bootc-generic-growpart.service
RUN systemctl disable sshd.service
RUN systemctl set-default graphical.target

7
iso/9/Containerfile Normal file
View File

@ -0,0 +1,7 @@
FROM quay.io/fedora/fedora:40-x86_64
COPY files/ks.ks /ks.ks
COPY files/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
RUN dnf install lorax util-linux -y
ENTRYPOINT ["/entrypoint.sh"]

View File

@ -0,0 +1,5 @@
#!/bin/bash
curl -Lo /upstream.iso https://repo.almalinux.org/development/almalinux/9/bootc/isos/x86_64/AlmaLinux-9-latest-x86_64-boot.iso
rm -vf /output/upstream.iso || true
mkksiso --ks /ks.ks /upstream.iso /output/9.iso

1
iso/9/files/ks.ks Normal file
View File

@ -0,0 +1 @@
ostreecontainer --url git.almalinux.org/charles2/obsidian:9