From 41c491fbdf2a9034db81efaef52afd67241ff764 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Fri, 6 Dec 2024 11:00:20 -0800 Subject: [PATCH] docker: prevent pip upgrade --- install/docker/template/Dockerfile.full.header | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/docker/template/Dockerfile.full.header b/install/docker/template/Dockerfile.full.header index 9547a6bdf7..239e06dca4 100644 --- a/install/docker/template/Dockerfile.full.header +++ b/install/docker/template/Dockerfile.full.header @@ -48,7 +48,8 @@ RUN apt-get -y install \ # allow pip to install to system RUN rm -f /usr/lib/python**/EXTERNALLY-MANAGED -RUN python3 -m pip install --upgrade pip +# ERROR: Cannot uninstall pip 24.0, RECORD file not found. Hint: The package was installed by debian. +# RUN python3 -m pip install --upgrade pip RUN python3 -m pip install debugpy typing_extensions psutil ################################################################