From eb1a40e4d51b6ef4533f44e3a8f93b4396fc7fb8 Mon Sep 17 00:00:00 2001 From: Lukas Martini Date: Tue, 14 Nov 2023 17:28:23 +0100 Subject: [PATCH] Toolchain container: Copy pacman config directly --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 0aa393f9..44b3906e 100644 --- a/Containerfile +++ b/Containerfile @@ -144,5 +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 +COPY land/pacman/pacman.linux.conf /etc/pacman.conf CMD ["/bin/bash"]