mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
14 lines
427 B
Docker
14 lines
427 B
Docker
from ubuntu:latest
|
|
|
|
MAINTAINER justin.ethier@gmail.com
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
# ENV TZ=America/New_York
|
|
|
|
ENV CYCLONE_VERSION v0.20
|
|
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"]
|