diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2022-12-07 15:29:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 15:29:32 +0100 |
commit | 22e91b8019ba07f1d014e106912cff33613b7629 (patch) | |
tree | ffede15448b71d2bc956c88eadada19e54a0f422 /docker | |
parent | Fix a bug introduced in v1.67.0 where not specifying a config file or a serve... (diff) | |
download | synapse-22e91b8019ba07f1d014e106912cff33613b7629.tar.xz |
docker: remove useless cargo install with apt (#14636)
Signed-off-by: Mathieu Velten <mathieuv@matrix.org>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 7f8756e8a4..185d5bc3d4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -43,7 +43,7 @@ RUN \ --mount=type=cache,target=/var/cache/apt,sharing=locked \ --mount=type=cache,target=/var/lib/apt,sharing=locked \ apt-get update -qq && apt-get install -yqq \ - build-essential cargo git libffi-dev libssl-dev \ + build-essential git libffi-dev libssl-dev \ && rm -rf /var/lib/apt/lists/* # We install poetry in its own build stage to avoid its dependencies conflicting with |