eris/packaging/Dockerfile.arch

17 lines
358 B
Text
Raw Normal View History

2023-09-18 02:08:19 +10:00
FROM archlinux:base-20240101.0.204074
2023-09-18 02:08:19 +10:00
RUN pacman -Sy
RUN pacman --noconfirm -S python-pipx gcc python-devtools
COPY . eris
RUN PIPX_BIN_DIR=/bin pipx install --system-site-packages ./eris/eris
RUN chmod a+rwx -R /root
RUN pacman --noconfirm -S sudo
RUN eris --install-all-tools
ENTRYPOINT ["eris"]
# docker build -t eris -f packaging/Dockerfile.arch .