From 7e0e6ef9ab4d54d1c76c880ba4ca5ed7b847cb94 Mon Sep 17 00:00:00 2001 From: Christoffer SOOP Date: Thu, 2 Jan 2025 12:17:38 +0100 Subject: [PATCH] #373 removing x86_64 toolchain dependency for clippy (#376) Clippy is included by rustup per default and not needed, cf. https://doc.rust-lang.org/clippy/installation.html --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 789a9ad4..351bb014 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,7 @@ RUN apt-get update && \ RUN rustup update && \ rustup install stable && \ - rustup install nightly && \ - rustup component add clippy --toolchain stable-x86_64-unknown-linux-gnu + rustup install nightly VOLUME ["/project"] WORKDIR "/project"