eris/packaging/Dockerfile

12 lines
255 B
Text
Raw Normal View History

FROM ubuntu:kinetic
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
COPY . eris
2021-10-31 22:49:13 +10:00
RUN cd eris && ./install
ENTRYPOINT ["eris"]