- Remove unrar since its not in debian (only in non-free) - Use 7zip instead of p7zip, and executable 7zz instead of 7za
16 lines
358 B
Text
16 lines
358 B
Text
|
|
|
|
FROM archlinux:base-20240101.0.204074
|
|
|
|
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 .
|