packaging: Add explicit Dockerfiles for debian and ubuntu
This commit is contained in:
parent
6d2e34e049
commit
0bf75047aa
2 changed files with 16 additions and 0 deletions
16
packaging/Dockerfile.debian
Normal file
16
packaging/Dockerfile.debian
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
|
||||
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 .
|
||||
Loading…
Add table
Add a link
Reference in a new issue