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 3d190ad commit eb011e3Copy full SHA for eb011e3
manywheel/Dockerfile
@@ -21,9 +21,10 @@ RUN wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm &
21
rpm -ivh epel-release-latest-7.noarch.rpm && \
22
rm -f epel-release-latest-7.noarch.rpm
23
24
-# cmake
25
-RUN yum install -y cmake3 && \
26
- ln -s /usr/bin/cmake3 /usr/bin/cmake
+# cmake-3.18.4 from pip
+RUN yum install -y python3-pip && \
+ python3 -mpip install cmake==3.18.4 && \
27
+ ln -s /usr/local/bin/cmake /usr/bin/cmake
28
29
RUN yum install -y autoconf aclocal automake make
30
0 commit comments