pika-debian-bleedingedge/Dockerfile

14 lines
637 B
Docker
Raw Normal View History

2023-08-14 16:39:22 +02: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 16:46:02 +02:00
RUN pacman -Syu --noconfirm
2023-08-14 17:03:34 +02:00
RUN pacman -S --needed git wget base-devel --noconfirm
2023-08-14 17:04:35 +02:00
RUN wget https://github.com/Jguer/yay/releases/download/v12.1.2/yay_12.1.2_x86_64.tar.gz
2023-08-14 17:03:34 +02: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 17:10:42 +02:00
# Root DANGEROUS BLAH BLAH BLAH
RUN useradd builduser -m
RUN passwd -d builduser
2023-08-14 17:08:03 +02: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'