From 51c5ba9610e557975a1dd7fb47367d25776ac7c2 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 17 Feb 2022 17:56:58 +0000 Subject: [PATCH] Dockerfile: Remove cargo-audit binary We don't run this binary using the container Signed-off-by: Rob Bradford --- resources/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/Dockerfile b/resources/Dockerfile index e65f1c2dc..5d5a8369b 100644 --- a/resources/Dockerfile +++ b/resources/Dockerfile @@ -92,7 +92,6 @@ RUN export ARCH="$(uname -m)" \ && if [ "$TARGETARCH" = "amd64" ]; then rustup toolchain add $RUST_TOOLCHAIN-x86_64-unknown-linux-musl; fi \ && if [ "$TARGETARCH" = "amd64" ]; then rustup component add rustfmt; fi \ && if [ "$TARGETARCH" = "amd64" ]; then rustup component add clippy; fi \ - && cargo install cargo-audit \ && rm -rf "$CARGO_HOME/registry" \ && ln -s "$CARGO_REGISTRY_DIR" "$CARGO_HOME/registry" \ && rm -rf "$CARGO_HOME/git" \