From e0346a8cc0379278e5d3f42082ea78f7c96d5ab9 Mon Sep 17 00:00:00 2001 From: Kaan Barmore-Genc Date: Fri, 25 Nov 2022 15:33:02 -0500 Subject: [PATCH] Install llvm-tools-preview The regular llvm-tools seems to be missing. Weird, it existed yesterday. --- rust/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index a4a34d1..9ecd388 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -9,8 +9,8 @@ RUN apk add --no-cache rustup build-base pkgconfig openssl-dev \ ENV PATH=/root/.cargo/bin:$PATH -# Install cargo llvm-cov and llvm-tools -RUN rustup component add llvm-tools \ +# Install cargo llvm-cov and llvm-tools-preview +RUN rustup component add llvm-tools-preview \ && cargo install cargo-llvm-cov # Install cargo-audit