Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN make build-testing && \

# necessary for proof generation when running a block producer.
RUN make download-circuits && \
rm -rf circuit-blobs/berkeley_rc1 circuit-blobs/*/tests
rm -rf circuit-blobs/*/tests

FROM debian:bullseye
# hadolint ignore=DL3008
Expand Down
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,8 @@ clean: ## Clean build artifacts
download-circuits: ## Download the circuits used by Mina from GitHub
@if [ ! -d "circuit-blobs" ]; then \
git clone --depth 1 https://github.com/openmina/circuit-blobs.git; \
ln -s "$$PWD"/circuit-blobs/3.0.0devnet ledger/; \
ln -s "$$PWD"/circuit-blobs/3.0.0mainnet ledger/; \
ln -s "$$PWD"/circuit-blobs/3.0.1devnet ledger/; \
ln -s "$$PWD"/circuit-blobs/berkeley_rc1 ledger/; \
else \
echo "circuit-blobs already exists, skipping download."; \
fi
Expand Down
Loading