Fixed make
All checks were successful
Deploy on push / on-push-deploy_sh-edraft (push) Successful in 1m45s

This commit is contained in:
Sven Heidemann 2023-11-29 19:16:48 +00:00
parent 7172023e40
commit 2efc1eecaa

View File

@ -19,7 +19,7 @@ RUN sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev l
cd Python-3.10.*/ && \
./configure --prefix=/usr/local --enable-optimizations --enable-shared LDFLAGS="-Wl,-rpath /usr/local/lib" && \
make -j $(nproc) && \
make altinstall && \
sudo make altinstall && \
cd ../ && sudo rm -rf Python-3.10.*/ && sudo rm Python-3.10.*.tgz
RUN sudo update-alternatives --install /usr/bin/python python /usr/local/bin/python3.10 1