From 1bf9f5a019f3552df482370b833d4bced957f269 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 26 Apr 2022 21:48:15 +0300 Subject: [PATCH] Don't uninstall build env setuptools --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3c224a786..ed0684aec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y \ COPY synapse /synapse/synapse/ COPY README.rst pyproject.toml requirements.txt /synapse/ -RUN pip install --prefix="/install" --no-warn-script-location \ +RUN pip install --prefix="/install" --no-warn-script-location --ignore-installed \ --no-deps -r /synapse/requirements.txt \ && pip install --prefix="/install" --no-warn-script-location \ --no-deps \