Monorepo for Aesthetic.Computer
aesthetic.computer
1FROM fedora:43
2
3RUN dnf install -y --setopt=install_weak_deps=False \
4 dosfstools util-linux mtools hfsplus-tools mactel-boot \
5 xorriso gdisk jq python3 \
6 && dnf clean all && rm -rf /var/cache/dnf
7
8COPY fedac/native/scripts/media-layout.sh /usr/local/lib/ac-media-layout.sh
9COPY fedac/native/scripts/flash-helper-runner.sh /usr/local/bin/ac-os-flash-helper
10COPY fedac/native/scripts/nixos-image-helper.sh /usr/local/bin/ac-os-nixos-image-helper
11COPY fedac/native/boot/systemd-bootx64.efi /usr/local/lib/systemd-bootx64.efi
12COPY fedac/native/bootloader/splash.efi /usr/local/lib/splash.efi
13
14RUN chmod +x /usr/local/bin/ac-os-flash-helper /usr/local/bin/ac-os-nixos-image-helper
15
16ENTRYPOINT ["/usr/local/bin/ac-os-flash-helper"]