Skip to content

Commit 5d8705a

Browse files
committed
update docker file
1 parent b608728 commit 5d8705a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build/dockerfiles/coordinator-api.Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@ FROM scrolltech/cuda-go-rust-builder:cuda-11.7.1-go-1.22.12-rust-nightly-2025-02
33
WORKDIR app
44

55
FROM chef as planner
6-
COPY ./crates ./
6+
COPY ./crates ./crates
77
COPY ./Cargo.* ./
88
COPY ./rust-toolchain ./
9+
COPY ./crates/gpu_override ./
910
RUN cargo chef prepare --recipe-path recipe.json
1011

1112
FROM chef as zkp-builder
1213
COPY ./rust-toolchain ./
1314
COPY --from=planner /app/recipe.json recipe.json
1415
# run scripts to get openvm-gpu
15-
COPY ./build/dockerfiles/coordinator-api/plonky3-gpu /plonky3-gpu
16-
COPY ./build/dockerfiles/coordinator-api/openvm-stark-gpu /openvm-stark-gpu
17-
COPY ./build/dockerfiles/coordinator-api/openvm-gpu /openvm-gpu
16+
# COPY ./build/dockerfiles/coordinator-api/plonky3-gpu /plonky3-gpu
17+
# COPY ./build/dockerfiles/coordinator-api/openvm-stark-gpu /openvm-stark-gpu
18+
# COPY ./build/dockerfiles/coordinator-api/openvm-gpu /openvm-gpu
1819
COPY ./build/dockerfiles/coordinator-api/gitconfig /root/.gitconfig
19-
COPY ./build/dockerfiles/coordinator-api/config.toml /root/.cargo/config.toml
20+
# COPY ./build/dockerfiles/coordinator-api/config.toml /root/.cargo/config.toml
2021
RUN cargo chef cook --release --recipe-path recipe.json
2122

2223
COPY ./crates ./

0 commit comments

Comments
 (0)