From 3cd3c2c036c22c99f3bb1941e6de940a788f8236 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:15:10 +0200 Subject: [PATCH] install rust --- docker-images/debian12.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-images/debian12.Dockerfile b/docker-images/debian12.Dockerfile index d5b7955..80cccbf 100644 --- a/docker-images/debian12.Dockerfile +++ b/docker-images/debian12.Dockerfile @@ -1,3 +1,6 @@ FROM debian:12 RUN apt-get update && apt-get install -y build-essential clang git curl + +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup-init.sh +RUN sh rustup-init.sh -y && rm rustup-init.sh