eris/packaging/Dockerfile.debian
Andrew Hamilton 79287c19ee Revert "packaging: Bring dependencies up to date"
This reverts commit a059ae8192.

Python3.12 is not in the stable distros yet.
2024-07-11 20:27:19 +10:00

16 lines
337 B
Text

FROM debian:bookworm
RUN apt-get update
RUN apt-get install -y python3.11 python3-pip pipx
COPY . eris
RUN PIPX_BIN_DIR=/bin pipx install --system-site-packages ./eris/eris
RUN chmod a+rwx -R /root
RUN apt-get install -y sudo
RUN eris --install-all-tools
ENTRYPOINT ["eris"]
# docker build -t eris -f packaging/Dockerfile.debian .