From 9ff2e26d2a42cebb1e12cf4b939205a055dcaa6d Mon Sep 17 00:00:00 2001 From: sholdee <102821812+sholdee@users.noreply.github.com> Date: Sun, 1 May 2022 19:58:35 -0500 Subject: [PATCH] Fix python 3.10 symlink line --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f0a39c50..f6f690e58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN dpkg --add-architecture i386 && \ libbz2-dev:i386 \ libpng-dev:i386 \ libgles2-mesa-dev && \ - ln -s /usr/bin/python3.10 /usr/bin/python3.10 \ + ln -sf /usr/bin/python3.10 /usr/bin/python3 && \ ln -s /usr/bin/gcc-10 /usr/bin/gcc && \ ln -s /usr/bin/gcc-10 /usr/bin/cc && \ ln -s /usr/bin/g++-10 /usr/bin/g++ && \ @@ -34,4 +34,4 @@ RUN git clone https://github.com/nigels-com/glew.git && \ make -C /glew install ARCH64=false RUN mkdir /soh -WORKDIR /soh \ No newline at end of file +WORKDIR /soh