From d3a7940333e800416677b858a73f0b24ecd76c23 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Tue, 11 Oct 2022 17:15:07 +0100 Subject: [PATCH] Synapse: use minimal Rust profile See matrix-org/synapse#14139 and matrix-org/synapse#14141 --- docker/synapse.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/synapse.Dockerfile b/docker/synapse.Dockerfile index 8342e05be..c3897c4e6 100644 --- a/docker/synapse.Dockerfile +++ b/docker/synapse.Dockerfile @@ -18,7 +18,7 @@ ENV CARGO_HOME=/cargo ENV PATH=/cargo/bin:/rust/bin:$PATH RUN mkdir /rust /cargo -RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable +RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable --profile minimal # Use the latest version of pip. This pulls in fixes not present in the # pip version provided by Debian Buster. See