We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b430a5 commit adc1ef8Copy full SHA for adc1ef8
context/Dockerfile
@@ -16,13 +16,13 @@ RUN rustup component add llvm-tools-preview
16
RUN rustup target add wasm32-unknown-unknown
17
RUN rustup install nightly # for docs building
18
19
-RUN cargo install cargo-audit
20
-RUN cargo install cargo-nextest
21
-RUN cargo install grcov
22
-RUN cargo install just
+RUN cargo install cargo-audit --locked
+RUN cargo install cargo-nextest@0.9.100 --locked
+RUN cargo install grcov --locked
+RUN cargo install just --locked
23
24
# we don't need this, but it downloads and cache most of our dependency tree
25
-RUN cargo install lwk_cli
+RUN cargo install lwk_cli --locked
26
27
COPY download_bins.sh /download_bins.sh
28
RUN ./download_bins.sh
0 commit comments