File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ COPY --chown=playground entrypoint.sh /playground/tools/
56
56
57
57
FROM toolchain as wasm-tools
58
58
59
- RUN cargo install wasm-tools
59
+ RUN cargo install --locked wasm-tools
60
60
61
61
# Fetch all the crate source files
62
62
@@ -79,7 +79,7 @@ RUN cargo build --release --manifest-path=/playground/modify-cargo-toml/Cargo.to
79
79
80
80
FROM toolchain as chef-available
81
81
82
- RUN cargo install cargo-chef
82
+ RUN cargo install --locked cargo-chef
83
83
84
84
WORKDIR /orchestrator
85
85
@@ -99,10 +99,10 @@ FROM chef-available as build-orchestrator
99
99
COPY --chown=playground asm-cleanup /asm-cleanup
100
100
COPY --chown=playground modify-cargo-toml /modify-cargo-toml
101
101
COPY --chown=playground --from=prepare-orchestrator /orchestrator/recipe.json /orchestrator/recipe.json
102
- RUN cargo chef cook --release
102
+ RUN cargo chef cook --locked -- release
103
103
104
104
COPY --chown=playground orchestrator /orchestrator
105
- RUN cargo install --path .
105
+ RUN cargo install --locked -- path .
106
106
107
107
# Compiler and pre-compiled crates
108
108
You can’t perform that action at this time.
0 commit comments