🚧 build: Install pip for Python 3.10

This commit is contained in:
Gerber, Mike 2023-02-07 11:36:48 +01:00
parent 9ca6463f8b
commit 06e373847e

View file

@ -33,7 +33,7 @@ RUN echo "setOverrideLogLevel(os.getenv('LOG_LEVEL', 'INFO'))" >/etc/ocrd_loggin
# We use get-pip.py here to avoid # We use get-pip.py here to avoid
# a. having to upgrade from Ubuntu's pip # a. having to upgrade from Ubuntu's pip
# b. the dreaded "old script wrapper" error message # b. the dreaded "old script wrapper" error message
RUN curl -sSL https://bootstrap.pypa.io/pip/3.10/get-pip.py -o get-pip.py && \ RUN curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3 get-pip.py && \ python3 get-pip.py && \
rm -f get-pip.py rm -f get-pip.py