fix: resolve cmake url for Dockerfile.dev (#2335)
This commit is contained in:
@@ -50,8 +50,8 @@ RUN curl -L https://github.com/clangd/clangd/releases/download/18.1.3/clangd-lin
|
||||
&& rm -rf clangd_18.1.3 clangd.zip
|
||||
|
||||
# Install CMake
|
||||
RUN curl -L https://cmake.org/download/#:~:text=cmake%2D3.31.1%2Dlinux%2Dx86_64.tar.gz -o cmake.tar.gz \
|
||||
&& tar -xzf cmake.tar.gz \
|
||||
RUN wget https://github.com/Kitware/CMake/releases/download/v3.31.1/cmake-3.31.1-linux-x86_64.tar.gz \
|
||||
&& tar -xzf cmake-3.31.1-linux-x86_64.tar.gz \
|
||||
&& cp -r cmake-3.31.1-linux-x86_64/bin/* /usr/local/bin/ \
|
||||
&& cp -r cmake-3.31.1-linux-x86_64/share/* /usr/local/share/ \
|
||||
&& rm -rf cmake-3.31.1-linux-x86_64 cmake.tar.gz
|
||||
|
||||
Reference in New Issue
Block a user