Skip to content

Commit 220a73e

Browse files
committed
chore: reactivate docker in build
1 parent 6ce9f1e commit 220a73e

File tree

1 file changed

+5
-1
lines changed
  • aggregation_mode/proof_aggregator

1 file changed

+5
-1
lines changed

aggregation_mode/proof_aggregator/build.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ fn main() {
1212
],
1313
// We use Docker to generate a reproducible ELF that will be identical across all platforms
1414
// (https://docs.succinct.xyz/docs/sp1/writing-programs/compiling#production-builds)
15+
docker: true,
1516
..Default::default()
1617
}
1718
});
@@ -20,7 +21,10 @@ fn main() {
2021
// regardless of the machine or local environment, will produce the same ImageID
2122
let docker_options = DockerOptionsBuilder::default().build().unwrap();
2223
// Reference: https://github.com/risc0/risc0/blob/main/risc0/build/src/config.rs#L73-L90
23-
let guest_options = GuestOptionsBuilder::default().build().unwrap();
24+
let guest_options = GuestOptionsBuilder::default()
25+
.use_docker(docker_options)
26+
.build()
27+
.unwrap();
2428

2529
risc0_build::embed_methods_with_options(HashMap::from([(
2630
"risc0_aggregation_program",

0 commit comments

Comments
 (0)