From 8ac0d468f0bfb65759a0c8adc42fb9f412dea61b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= Date: Wed, 28 Feb 2024 11:43:22 +0100 Subject: [PATCH] gccrs: install rustc (#22) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs https://github.com/compiler-explorer/compiler-explorer/issues/6201 Signed-off-by: Marc Poulhiès --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a609cba..ecb565a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,9 @@ RUN apt update -y -q && apt upgrade -y -q && apt upgrade -y -q && apt install -y ./aws/install && \ rm -rf aws* +## The Rust frontend now requires rustc to build. +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s - -y + # We build from a directory that must be at least searchable with # EPERM on the CE nodes. Older GCCs erroneously search the $prefix # used during building, and if they hit a path that gives EPERM they