From 601fa252911ddea0fc4eccf2c57bbffdb00355f8 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Sat, 3 Feb 2024 09:59:02 -0800 Subject: [PATCH] Don't use --user to install anything --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 277cbbde..6579c0c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ ENV PATH ${VIRTUAL_ENV}/bin:${PATH} RUN python3 -m venv ${VIRTUAL_ENV} # install hg-evolve (Mercurial extensions) -RUN pip install hg-evolve --user --no-cache-dir +RUN pip install hg-evolve --no-cache-dir # install repo2docker COPY --from=0 /tmp/wheelhouse /tmp/wheelhouse