File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 2025-12
2+
3+ * Add Rust 1.91.1 via rustup with minimal profile
4+
15## 2025-10
26
37* Upgrade turbo: 2.5.3 -> 2.5.8
Original file line number Diff line number Diff line change @@ -67,3 +67,9 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
6767# install uv
6868# https://docs.astral.sh/uv/reference/installer/#unmanaged-installations
6969RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_UNMANAGED_INSTALL="/usr/bin" sh
70+
71+ # install rust via rustup
72+ # https://www.rust-lang.org/tools/install
73+ ENV RUST_VERSION 1.91.1
74+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal \
75+ && ln -s /root/.cargo/bin/* /usr/bin/
Original file line number Diff line number Diff line change @@ -48,6 +48,10 @@ The default `kubectl` symlink points to v1.32.
4848
4949- ** Go** : Version 1.22.0 installed from the official golang image.
5050
51+ ### Rust Programming Language
52+
53+ - ** Rust** : Version 1.91.1 installed via rustup with minimal profile (includes ` rustc ` , ` cargo ` , ` rustup ` ).
54+
5155## Environmental Variables
5256
5357Configured for optimal performance and non-interactive installations:
@@ -60,6 +64,7 @@ Configured for optimal performance and non-interactive installations:
6064- ` SWC_CORE ` : ` 1.11.24 `
6165- ` AWS_CLI ` : ` 2.27.19 `
6266- ` BUILDKIT_VERSION ` : ` 0.21.1 `
67+ - ` RUST_VERSION ` : ` 1.91.1 `
6368
6469## Paths
6570
You can’t perform that action at this time.
0 commit comments