From df574cb9ba49d4e7c899c8bdfedcfb38c81512bb Mon Sep 17 00:00:00 2001 From: PopeRigby Date: Thu, 31 Aug 2023 13:48:11 -0700 Subject: [PATCH] Install paru --- Containerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Containerfile b/Containerfile index b698d99..5fb902d 100644 --- a/Containerfile +++ b/Containerfile @@ -12,6 +12,12 @@ COPY extra-packages.txt / RUN pacman -Syu --needed --noconfirm - < extra-packages.txt RUN rm /extra-packages.txt +# Install paru from AUR +RUN git clone https://aur.archlinux.org/paru.git /tmp/paru && \ + cd /tmp/paru && \ + makepkg -si --noconfirm && \ + rm -rf /tmp/paru + # Clean up cache RUN pacman -Scc --noconfirm