eris/packaging/Dockerfile

15 lines
407 B
Text
Raw Normal View History

# Copyright (C) 2020 Andrew Hamilton. All rights reserved.
# Licensed under the Artistic License 2.0.
FROM ubuntu:impish
RUN apt update && apt install -y git sudo
RUN git clone https://github.com/ahamilton/eris
RUN cd eris && git checkout 7fa155da72fa6062edf782c6375fb36758ecb0e6
RUN rm -rf eris/.git
RUN DEBIAN_FRONTEND=noninteractive apt install -y tzdata
2021-10-31 22:49:13 +10:00
RUN cd eris && ./install
ENTRYPOINT ["eris"]