Skip to content

Commit

Permalink
Merge pull request #2 from sholdee/patch-1
Browse files Browse the repository at this point in the history
Fix python 3.10 symlink line
  • Loading branch information
Random06457 authored May 2, 2022
2 parents 2399659 + 9ff2e26 commit 2d25aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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++ && \
Expand All @@ -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
WORKDIR /soh

0 comments on commit 2d25aa9

Please sign in to comment.