Replaced aur_builder by builder in dockerfile

This commit is contained in:
Kevin Veen-Birkenbach 2025-07-20 18:39:54 +02:00
parent dcb57af6f7
commit a580f41edd
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E

View File

@ -19,12 +19,12 @@ RUN printf '#!/bin/sh\nexit 0\n' > /usr/bin/systemctl \
&& chmod +x /usr/bin/yay && chmod +x /usr/bin/yay
# 3) Build & install python-simpleaudio from AUR manually (as non-root) # 3) Build & install python-simpleaudio from AUR manually (as non-root)
RUN useradd -m builder \ RUN useradd -m aur_builder \
&& su builder -c "git clone https://aur.archlinux.org/python-simpleaudio.git /home/builder/psa && \ && su aur_builder -c "git clone https://aur.archlinux.org/python-simpleaudio.git /home/aur_builder/psa && \
cd /home/builder/psa && \ cd /home/aur_builder/psa && \
makepkg --noconfirm --skippgpcheck" \ makepkg --noconfirm --skippgpcheck" \
&& pacman -U --noconfirm /home/builder/psa/*.pkg.tar.zst \ && pacman -U --noconfirm /home/aur_builder/psa/*.pkg.tar.zst \
&& rm -rf /home/builder/psa && rm -rf /home/aur_builder/psa
# 4) Clone Kevins Package Manager and create its venv # 4) Clone Kevins Package Manager and create its venv
ENV PKGMGR_REPO=/opt/package-manager \ ENV PKGMGR_REPO=/opt/package-manager \