From eb5f6eef7844046a83ebdfb48fc7bd3b27782393 Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 28 Apr 2025 07:34:53 +0200 Subject: [PATCH] fix(rust Dockerfile): replace rustup installation with apk command for rust and cargo --- images/actions/rust/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/images/actions/rust/Dockerfile b/images/actions/rust/Dockerfile index 81ce104..c4ca462 100644 --- a/images/actions/rust/Dockerfile +++ b/images/actions/rust/Dockerfile @@ -1,4 +1,3 @@ FROM git.kjan.de/actions/runner-basic:latest -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh -s -- -y -RUN . "$HOME/.cargo/env" +RUN sudo apk add --no-cache rust cargo