".github/vscode:/vscode.git/clone" did not exist on "77a64b2c77b35f7af7923eacded0c94daf2bb319"
Unverified Commit fda628d8 authored by Yineng Zhang's avatar Yineng Zhang Committed by GitHub
Browse files

fix: resolve cmake url for Dockerfile.dev (#2335)

parent 07ec07ad
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment