You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I will show it in Office Hours at 330pm EST (always at https://jitsi.mfek.org/OfficeHours) made a lot of progress already but not yet done.
# Use the base Arch Linux imageFROM archlinux
WORKDIR .
RUN mkdir /workdir
RUN ls /
COPY"./workdir/mirrorlist" /workdir
COPY"./workdir/*.zst" /workdir
RUN cp /workdir/mirrorlist /etc/pacman.d/mirrorlist
# Update the system and install necessary packagesRUN pacman -Syu --noconfirm && \
pacman -S --noconfirm base-devel git parallel python
# Create a non-root userRUN useradd -m dockeruser &&\
echo 'dockeruser ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers.d/dockeruser
# Switch to the non-root userUSER dockeruser
# Install yay (AUR helper)RUN sudo pacman -U /workdir/*.zst --noconfirm
# Install AUR packages: xidel-bin and gftoolsRUN yay -Syu --noconfirm xidel-bin gftools
# Set the entry point or default commandCMD ["/bin/bash"]
I'll get working on this.
The text was updated successfully, but these errors were encountered: