packaging: Bring Dockerfile up to date
This commit is contained in:
parent
b6b9b44ec3
commit
080e53f453
1 changed files with 10 additions and 5 deletions
|
|
@ -1,11 +1,16 @@
|
|||
|
||||
FROM ubuntu:kinetic
|
||||
|
||||
FROM ubuntu:lunar
|
||||
|
||||
RUN apt-get update
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
|
||||
RUN apt-get install -y sudo python3.11 python3-pip
|
||||
RUN python3.11 -m pip install --upgrade pip
|
||||
RUN apt-get install -y python3.11 python3-pip pipx
|
||||
COPY . eris
|
||||
RUN cd eris && ./install
|
||||
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 --apt-install-tools
|
||||
|
||||
ENTRYPOINT ["eris"]
|
||||
|
||||
|
||||
# docker build -t eris -f packaging/Dockerfile .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue