From 17aef0ac719b52303150a4d329dd0453125cb6ee Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Sat, 25 Apr 2026 08:37:55 -0700 Subject: [PATCH] Install Rust via rustup instead of system packages Debian packages lag behind upstream. rustup gives a current toolchain with minimal profile plus clippy and rustfmt. Assisted-by: GLM-5.1 via pi --- .ramekin/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ramekin/Dockerfile b/.ramekin/Dockerfile index d948044..19ffc0a 100644 --- a/.ramekin/Dockerfile +++ b/.ramekin/Dockerfile @@ -1,10 +1,10 @@ FROM ramekin-agent RUN apt-get update && apt-get install -y --no-install-recommends \ bc \ - cargo \ + curl \ grcov \ jq \ - rustc \ - rustfmt \ && rm -rf /var/lib/apt/lists/* +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --component clippy,rustfmt +ENV PATH="/root/.cargo/bin:${PATH}" ENV RANGER_DEFAULT_BACKLOG=quire -- 2.54.0