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/
|
|
|
|
RUN sudo -u nobody yay -Sy
|
|
|
|
RUN sudo -u nobody yay -S yay
|