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
|
|
|
|
2021-12-09 13:28:55 +10:00
|
|
|
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y sudo tzdata
|
|
|
|
|
COPY . eris
|
2021-10-31 22:49:13 +10:00
|
|
|
RUN cd eris && ./install
|
2020-01-10 12:36:47 +10:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["eris"]
|