You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: devtools/dev_container/Dockerfile
+2-4
Original file line number
Diff line number
Diff line change
@@ -17,18 +17,16 @@ RUN apt-get update && \
17
17
&& apt-get clean && rm -rf /var/lib/apt/lists/*
18
18
19
19
# Install rustup and a fixed version of Rust.
20
-
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2023-12-31
21
-
RUN rustup toolchain install 1.75.0
20
+
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.83.0
22
21
RUN rustup component add rust-src
23
22
RUN rustup component add llvm-tools-preview
24
23
COPY cargo_config /root/.cargo/config
25
24
RUN cargo install cargo-xbuild
26
25
27
26
# Install fuzzing tools
28
-
# The rust version used now is nightly-2021-08-20, the latest cargo-fuzz needs to be upgraded to the rust version, and nightly-2021-08-20 can use cargo-fuzz 0.10.2 .
29
27
# For more information, please see doc/fuzzing.md.
0 commit comments