|
|
|
|
|
|
|
|
# more recent versions of boost that the system CMake doesn't now about. |
|
|
# more recent versions of boost that the system CMake doesn't now about. |
|
|
RUN wget https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2.tar.gz && \ |
|
|
RUN wget https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2.tar.gz && \ |
|
|
tar -zxf cmake-3.16.2.tar.gz && \ |
|
|
tar -zxf cmake-3.16.2.tar.gz && \ |
|
|
pushd cmake-3.16.2 && \ |
|
|
|
|
|
|
|
|
cd cmake-3.16.2 && \ |
|
|
./bootstrap && \ |
|
|
./bootstrap && \ |
|
|
make -j $(nproc) && \ |
|
|
make -j $(nproc) && \ |
|
|
make install && \ |
|
|
make install && \ |
|
|
popd && \ |
|
|
|
|
|
|
|
|
cd .. && \ |
|
|
rm -rf cmake-3.16.2 && \ |
|
|
rm -rf cmake-3.16.2 && \ |
|
|
rm -rf cmake-3.16.2.tar.gz |
|
|
rm -rf cmake-3.16.2.tar.gz |
|
|
|
|
|
|