From 25783883d76cccbd2ca2942dc49ab2e8bbf063dd Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Fri, 9 Aug 2024 10:51:50 -0700 Subject: [PATCH] Update Dockerfile --- .kokoro/docker/docs/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.kokoro/docker/docs/Dockerfile b/.kokoro/docker/docs/Dockerfile index e5410e296..62c13caee 100644 --- a/.kokoro/docker/docs/Dockerfile +++ b/.kokoro/docker/docs/Dockerfile @@ -74,6 +74,10 @@ RUN make altinstall ENV PATH /usr/local/bin/python3.10:$PATH +# Update the python3 symlink +RUN rm /usr/bin/python3 && \ + ln -s /usr/bin/python3.10 /usr/bin/python3 + ###################### Install pip RUN wget -O /tmp/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' \ && python3.10 /tmp/get-pip.py \