Do not use install.sh

This commit is contained in:
Justin Ethier 2019-12-11 14:14:13 -05:00
parent 2114bfce6f
commit aa024952b3

View file

@ -6,6 +6,6 @@ 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} && ./install.sh
RUN git clone https://github.com/justinethier/cyclone-bootstrap && cd cyclone-bootstrap && git fetch -a && git checkout ${CYCLONE_VERSION} && make && make install
CMD ["icyc"]