We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d542d commit bcfd07eCopy full SHA for bcfd07e
1 file changed
docker/proof-aggregator.Dockerfile
@@ -2,8 +2,9 @@ FROM ghcr.io/yetanotherco/aligned_layer/aligned_base:latest AS base
2
3
RUN apt update -y && apt install -y gcc
4
5
-WORKDIR /aligned_layer/aggregation_mode/
6
-RUN cargo build --features prove --release --bin proof_aggregator_cpu
+COPY crates /aligned_layer/crates/
+COPY aggregation_mode /aligned_layer/aggregation_mode/
7
+RUN cargo build --manifest-path ./aggregation_mode/Cargo.toml --features prove --release --bin proof_aggregator_cpu
8
9
FROM debian:bookworm-slim AS final
10
0 commit comments