eris/packaging/Dockerfile
2023-09-10 23:41:42 +10:00

11 lines
255 B
Docker

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
RUN cd eris && ./install
ENTRYPOINT ["eris"]