We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c6f56 commit 10a6e38Copy full SHA for 10a6e38
Dockerfile
@@ -58,7 +58,10 @@ RUN \
58
sudo apt install -y kitware-archive-keyring && \
59
echo "deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ $CODENAME-rc main" | sudo tee -a /etc/apt/sources.list.d/kitware.list >/dev/null && \
60
sudo apt update && \
61
- sudo apt install -y cmake && \
+ # The linuxdeploy cmake requires 3.2, but compatibility with CMake < 3.5 has been
62
+ # removed from CMake as of 4.0.0
63
+ sudo apt install -y cmake=3.31.6-0kitware1ubuntu22.04.1 cmake-data=3.31.6-0kitware1ubuntu22.04.1 && \
64
+ sudo apt-mark hold cmake cmake-data && \
65
sudo rm -rf /var/lib/apt/lists
66
67
# So pip will not report about the path...
0 commit comments