From 988eb4d18a016916e2602980e7ebe381c8ba16ae Mon Sep 17 00:00:00 2001 From: Lukas Martini Date: Tue, 14 Nov 2023 17:25:27 +0100 Subject: [PATCH] Preload toolchain container with pacman.conf --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 3575089f..0aa393f9 100644 --- a/Containerfile +++ b/Containerfile @@ -144,4 +144,5 @@ RUN echo 'dev ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers RUN mkdir /root/.ssh RUN ssh-keyscan pkgs.xelix.org >> /root/.ssh/known_hosts +RUN wget https://github.com/lutoma/xelix/blob/main/land/pacman/pacman.linux.conf -O /etc/pacman.conf CMD ["/bin/bash"]