phase2-bn254/Dockerfile

9 lines
302 B
Docker
Raw Normal View History

2020-02-29 16:44:43 +03:00
FROM rust:slim
2020-01-18 20:39:27 +03:00
RUN apt-get update && \
2020-02-29 16:44:43 +03:00
apt-get install -y pkg-config libssl-dev git && \
2020-01-18 20:39:27 +03:00
rm -rf /var/lib/apt/lists/*
2020-02-29 16:44:43 +03:00
RUN git clone -b ceremony https://github.com/tornadocash/phase2-bn254
WORKDIR /phase2-bn254/phase2
RUN cargo build --release --bin tornado
CMD cargo run --release --bin tornado