mirror of
https://github.com/Veridise/Picus.git
synced 2026-01-11 22:48:03 -05:00
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
FROM veridise/picus:base
|
|
|
|
RUN source "$HOME/.cargo/env" && \
|
|
git clone https://github.com/sorawee/circom.git && \
|
|
cd circom/ && \
|
|
git checkout tag-in-out && \
|
|
cargo build --release && \
|
|
cargo install --path circom && \
|
|
cd .. && rm -rf circom/
|