From 2d37ea0dfd63391aed2adb2c7e8c68d0e00933ad Mon Sep 17 00:00:00 2001 From: Nikola Borisov Date: Thu, 7 Sep 2023 17:38:51 -0700 Subject: [PATCH] Cargo.lock file should be there Otherwise it just runs with some new stuff --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e507454c..4855213a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ ARG CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse FROM chef as planner COPY Cargo.toml Cargo.toml +COPY Cargo.lock Cargo.lock COPY rust-toolchain.toml rust-toolchain.toml COPY proto proto COPY benchmark benchmark @@ -28,6 +29,7 @@ COPY --from=planner /usr/src/recipe.json recipe.json RUN cargo chef cook --release --recipe-path recipe.json COPY Cargo.toml Cargo.toml +COPY Cargo.lock Cargo.lock COPY rust-toolchain.toml rust-toolchain.toml COPY proto proto COPY benchmark benchmark