commit 46a52b2e6215386df79c4491b87ad48bd4f81434 Author: JMARyA Date: Thu Apr 17 05:07:49 2025 +0200 init diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..db4534d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM archlinux + +COPY ./pacman.conf /pacman.conf +RUN pacman -Syu navinstall + +RUN navinstall create-tar --dir /os + +FROM scratch +COPY --from=builder /os/* / diff --git a/pacman.conf b/pacman.conf new file mode 100644 index 0000000..8d64eff --- /dev/null +++ b/pacman.conf @@ -0,0 +1,26 @@ +[options] +HoldPkg = pacman glibc +Architecture = auto +Color +CheckSpace +ParallelDownloads = 6 +DownloadUser = alpm +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional + +[core] +Include = /etc/pacman.d/mirrorlist + +[extra] +Include = /etc/pacman.d/mirrorlist + +[multilib] +Include = /etc/pacman.d/mirrorlist + +[navos] +Server = https://pac.hydrar.de/pkg/$repo/$arch +SigLevel = Optional TrustAll + +[our] +Server = https://pac.hydrar.de/pkg/$repo/$arch +SigLevel = Never