10 lines
361 B
Docker
10 lines
361 B
Docker
# We just want archlinux with an aur helper already included
|
|
# Bump for rebuild on 14/08/2023 17:30 UTC +3
|
|
FROM archlinux:latest
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S --needed git base-devel --noconfirm
|
|
RUN sudo -u nobody git clone https://aur.archlinux.org/yay.git
|
|
RUN cd yay
|
|
RUN sudo -u nobody makepkg -s --noconfirm
|
|
RUN pacman -U ./yay*.pkg* --noconfirm
|