xref: /aosp_15_r20/external/grpc-grpc/templates/tools/dockerfile/cmake_from_install_script.include (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1#=================
2# Install cmake using the install script.
3RUN curl -sSL -o cmake-linux.sh https://github.com/Kitware/CMake/releases/download/v3.16.1/cmake-3.16.1-Linux-x86_64.sh ${'\\'}
4    && sh cmake-linux.sh -- --skip-license --prefix=/usr ${'\\'}
5    && rm cmake-linux.sh
6