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 16:43:06 +02:00
|
|
|
RUN pacman -S --needed git base-devel --noconfirm
|
2023-08-14 16:52:00 +02:00
|
|
|
RUN sudo -u nobody git clone https://aur.archlinux.org/yay.git
|
2023-08-14 16:43:06 +02:00
|
|
|
RUN cd yay
|
2023-08-14 16:50:07 +02:00
|
|
|
RUN sudo -u nobody makepkg -s --noconfirm
|
|
|
|
RUN pacman -U ./yay*.pkg* --noconfirm
|