2020-01-10 12:36:47 +10:00
|
|
|
# Copyright (C) 2020 Andrew Hamilton. All rights reserved.
|
|
|
|
|
# Licensed under the Artistic License 2.0.
|
|
|
|
|
|
|
|
|
|
|
2021-10-18 11:38:12 +10:00
|
|
|
FROM ubuntu:impish
|
2020-01-10 12:36:47 +10:00
|
|
|
|
|
|
|
|
RUN apt update && apt install -y git sudo
|
|
|
|
|
RUN git clone https://github.com/ahamilton/eris
|
2021-10-18 11:38:12 +10:00
|
|
|
RUN cd eris && git checkout d83bea2ba8a419e2b3cd4fd4b3367e25fae6339d
|
2020-01-10 12:36:47 +10:00
|
|
|
RUN rm -rf eris/.git
|
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt install -y tzdata
|
2021-10-31 21:41:32 +10:00
|
|
|
RUN cd eris && python3.9 -m pip install -r requirements.txt .
|
|
|
|
|
RUN cd eris && ./install-tools
|
2020-01-10 12:36:47 +10:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["eris"]
|