mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
12 lines
361 B
Docker
12 lines
361 B
Docker
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"]
|