From 46a52b2e6215386df79c4491b87ad48bd4f81434 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Thu, 17 Apr 2025 05:07:49 +0200 Subject: [PATCH] init --- Dockerfile | 9 +++++++++ pacman.conf | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 Dockerfile create mode 100644 pacman.conf 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