Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2025-12

* Add Rust 1.91.1 via rustup with minimal profile

## 2025-10

* Upgrade turbo: 2.5.3 -> 2.5.8
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,9 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
# install uv
# https://docs.astral.sh/uv/reference/installer/#unmanaged-installations
RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_UNMANAGED_INSTALL="/usr/bin" sh

# install rust via rustup
# https://www.rust-lang.org/tools/install
ENV RUST_VERSION 1.91.1
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal \
&& ln -s /root/.cargo/bin/* /usr/bin/
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ The default `kubectl` symlink points to v1.32.

- **Go**: Version 1.22.0 installed from the official golang image.

### Rust Programming Language

- **Rust**: Version 1.91.1 installed via rustup with minimal profile (includes `rustc`, `cargo`, `rustup`).

## Environmental Variables

Configured for optimal performance and non-interactive installations:
Expand All @@ -60,6 +64,7 @@ Configured for optimal performance and non-interactive installations:
- `SWC_CORE`: `1.11.24`
- `AWS_CLI`: `2.27.19`
- `BUILDKIT_VERSION`: `0.21.1`
- `RUST_VERSION`: `1.91.1`

## Paths

Expand Down
Loading