11 lines
556 B
Docker
Raw Normal View History

2023-08-14 17:39:22 +03:00
# We just want archlinux with an aur helper already included
# Bump for rebuild on 14/08/2023 17:30 UTC +3
FROM archlinux:latest
2023-08-14 17:46:02 +03:00
RUN pacman -Syu --noconfirm
2023-08-14 18:03:34 +03:00
RUN pacman -S --needed git wget base-devel --noconfirm
2023-08-14 18:04:35 +03:00
RUN wget https://github.com/Jguer/yay/releases/download/v12.1.2/yay_12.1.2_x86_64.tar.gz
2023-08-14 18:03:34 +03:00
RUN tar -xf ./yay_12.1.2_x86_64.tar.gz
RUN mv ./yay_12.1.2_x86_64/yay /usr/bin/
2023-08-14 18:08:03 +03:00
RUN printf 'builduser ALL=(ALL) ALL\n' | tee -a /etc/sudoers # Allow the builduser passwordless sudo
RUN sudo -u builduser bash -c 'cd ~ && yay -Sy && yay -S yay --noconfirm'