From 84e9ae7348ab445d1f9241bb48511b93b1aa2fac Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 28 Apr 2025 07:20:21 +0200 Subject: [PATCH] fix(rust): replace sudo with curl for rustup installation command in Dockerfile --- images/actions/rust/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/actions/rust/Dockerfile b/images/actions/rust/Dockerfile index 06b3d26..c70f44c 100644 --- a/images/actions/rust/Dockerfile +++ b/images/actions/rust/Dockerfile @@ -1,3 +1,3 @@ FROM git.kjan.de/actions/runner-basic:latest -RUN sudo --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh