fix(ci): update dockerfile

Use correct URL to get python 3.7 version of pip.
This commit is contained in:
Leroy Hopson 2025-01-12 11:09:04 +13:00
parent 1107c109ba
commit 89f92f9c1e
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -7,7 +7,7 @@ RUN add-apt-repository -y ppa:jblgf0/python
RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test
RUN apt-get update -y RUN apt-get update -y
RUN apt-get install -y curl gcc-9-multilib g++-9-multilib python3.7 RUN apt-get install -y curl gcc-9-multilib g++-9-multilib python3.7
RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.7 RUN curl -sS https://bootstrap.pypa.io/pip/3.7/get-pip.py | python3.7
RUN pip3 install scons==4.4.0 RUN pip3 install scons==4.4.0
RUN ln -sf /usr/bin/gcc-9 /usr/bin/gcc RUN ln -sf /usr/bin/gcc-9 /usr/bin/gcc
RUN ln -s /usr/bin/g++-9 /usr/bin/g++ RUN ln -s /usr/bin/g++-9 /usr/bin/g++