Create Dockerfile

This commit is contained in:
Justin Ethier 2019-12-10 13:16:51 -05:00 committed by GitHub
parent 6b7a749288
commit a8542f8a00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Dockerfile Normal file
View file

@ -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"]