cyclone/Dockerfile
2020-01-16 22:15:39 -05:00

11 lines
365 B
Docker

from ubuntu:latest
MAINTAINER justin.ethier@gmail.com
ENV CYCLONE_VERSION v0.12
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} && make && make install
CMD ["icyc"]