Skip to content

Commit bcfd07e

Browse files
committed
fix: docker build copy aggregation mode files
1 parent e6d542d commit bcfd07e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docker/proof-aggregator.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ FROM ghcr.io/yetanotherco/aligned_layer/aligned_base:latest AS base
22

33
RUN apt update -y && apt install -y gcc
44

5-
WORKDIR /aligned_layer/aggregation_mode/
6-
RUN cargo build --features prove --release --bin proof_aggregator_cpu
5+
COPY crates /aligned_layer/crates/
6+
COPY aggregation_mode /aligned_layer/aggregation_mode/
7+
RUN cargo build --manifest-path ./aggregation_mode/Cargo.toml --features prove --release --bin proof_aggregator_cpu
78

89
FROM debian:bookworm-slim AS final
910

0 commit comments

Comments
 (0)