We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c4f1f9 commit 5ad7a0aCopy full SHA for 5ad7a0a
docker/proof-aggregator.Dockerfile
@@ -2,9 +2,20 @@ FROM ghcr.io/yetanotherco/aligned_layer/aligned_base:latest AS base
2
3
RUN apt update -y && apt install -y gcc
4
5
+# Install SP1 toolchain
6
+RUN curl -L https://sp1up.succinct.xyz | bash -s -- -y
7
+ENV PATH="/root/.sp1/bin:${PATH}"
8
+RUN sp1up
9
+
10
+# Install Risc0 toolchain
11
+RUN curl -L https://risczero.com/install | bash
12
+ENV PATH="/root/.risc0/bin:${PATH}"
13
+RUN rzup install
14
15
COPY crates /aligned_layer/crates/
16
COPY aggregation_mode /aligned_layer/aggregation_mode/
17
WORKDIR /aligned_layer
18
19
RUN IN_DOCKER=true cargo build --manifest-path ./aggregation_mode/Cargo.toml --features prove --release --bin proof_aggregator_cpu
20
21
FROM debian:bookworm-slim AS final
0 commit comments