File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
aggregation_mode/proof_aggregator Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments