From 13cacb0ce4583bcbdd79ca2ac880067d9f5c465e Mon Sep 17 00:00:00 2001 From: iamkroot Date: Thu, 5 Sep 2024 16:50:14 -0500 Subject: [PATCH] Freeze pip download URL to python 3.7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 468db75..fcd4325 100644 --- a/Dockerfile +++ b/Dockerfile @@ -289,7 +289,7 @@ ENV LLVM_CONFIG_PATH=/usr/lib/llvm-10/bin/llvm-config # Makes weird stuff happen in the LLVM install so leaving until later RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1 RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1 -RUN curl -s https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ +RUN curl -s https://bootstrap.pypa.io/pip/3.7/get-pip.py -o get-pip.py && \ python get-pip.py --force-reinstall && \ rm get-pip.py