From a8542f8a000302f677de6a92ad530e3321b11782 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 10 Dec 2019 13:16:51 -0500 Subject: [PATCH] Create Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..99051c40 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +from ubuntu:latest + +MAINTAINER justin.ethier@gmail.com + +ENV CYCLONE_VERSION v0.11.7 +RUN apt update -y +RUN apt install -y build-essential git rsync texinfo libtommath-dev libck-dev make gcc + +RUN git clone https://github.com/justinethier/cyclone-bootstrap && cd cyclone-bootstrap && git fetch -a && git checkout ${CYCLONE_VERSION} +RUN ./install.sh + +CMD ["icyc"]