python-compute/packaging/archlinux/Dockerfile
2024-01-16 22:26:59 +03:00

11 lines
235 B
Docker

FROM archlinux:latest
WORKDIR /mnt
RUN chown 1000:1000 /mnt; \
pacman -Sy --noconfirm \
fakeroot \
binutils \
python \
python-pip; \
echo "alias ll='ls -alFh'" >> /etc/bash.bashrc
USER 1000:1000