We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da22a42 commit 6ae4df5Copy full SHA for 6ae4df5
devops/docker/ubuntu-14.04-amd64/Dockerfile
@@ -5,8 +5,11 @@ ARG DEBIAN_FRONTEND=noninteractive
5
RUN apt-get -y update && apt-get -y install \
6
gcc \
7
git \
8
- cmake \
9
build-essential \
10
file
11
12
-WORKDIR /git
+WORKDIR /git
+
13
+# CMake
14
+RUN git clone https://github.com/Kitware/CMake --recursive -b v3.21.7
15
+RUN cd CMake && ./bootstrap -- -DCMAKE_USE_OPENSSL=OFF && make -j$(nproc) && make install && hash -r && rm -rf /git/CMake
0 commit comments