From 9ca6463f8bf71bc28418276e9b9f719e4e027a28 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Tue, 7 Feb 2023 11:30:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20build:=20Install=20pip=20for=20P?= =?UTF-8?q?ython=203.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-core b/Dockerfile-core index 26c012a..12d91f4 100644 --- a/Dockerfile-core +++ b/Dockerfile-core @@ -33,7 +33,7 @@ RUN echo "setOverrideLogLevel(os.getenv('LOG_LEVEL', 'INFO'))" >/etc/ocrd_loggin # We use get-pip.py here to avoid # a. having to upgrade from Ubuntu's pip # b. the dreaded "old script wrapper" error message -RUN curl -sSL https://bootstrap.pypa.io/pip/3.6/get-pip.py -o get-pip.py && \ +RUN curl -sSL https://bootstrap.pypa.io/pip/3.10/get-pip.py -o get-pip.py && \ python3 get-pip.py && \ rm -f get-pip.py