From 89f92f9c1e27213d1de4eeb5929d9d1e7c410684 Mon Sep 17 00:00:00 2001 From: Leroy Hopson Date: Sun, 12 Jan 2025 11:09:04 +1300 Subject: [PATCH] fix(ci): update dockerfile Use correct URL to get python 3.7 version of pip. --- addons/godot_xterm/native/linux.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/godot_xterm/native/linux.Dockerfile b/addons/godot_xterm/native/linux.Dockerfile index 898c47e..7bf7f18 100644 --- a/addons/godot_xterm/native/linux.Dockerfile +++ b/addons/godot_xterm/native/linux.Dockerfile @@ -7,7 +7,7 @@ RUN add-apt-repository -y ppa:jblgf0/python RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test RUN apt-get update -y 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 ln -sf /usr/bin/gcc-9 /usr/bin/gcc RUN ln -s /usr/bin/g++-9 /usr/bin/g++