16 lines
334 B
Text
16 lines
334 B
Text
|
|
|
|
FROM ubuntu:lunar
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3.12 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.ubuntu .
|