From 35a5706b5c2f6fee873ae2b2781629e3f8fe57bb Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Mon, 28 Apr 2025 07:30:16 +0200 Subject: [PATCH] fix(rust Dockerfile): source cargo environment to ensure rust is available --- images/actions/rust/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/actions/rust/Dockerfile b/images/actions/rust/Dockerfile index a7a1a22..81ce104 100644 --- a/images/actions/rust/Dockerfile +++ b/images/actions/rust/Dockerfile @@ -1,3 +1,4 @@ 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"