10 lines
209 B
Docker
10 lines
209 B
Docker
|
|
FROM ubuntu:impish
|
|
|
|
RUN apt-get update
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
|
|
RUN apt-get install -y sudo python3.9 python3-pip
|
|
COPY . eris
|
|
RUN cd eris && ./install
|
|
|
|
ENTRYPOINT ["eris"]
|