We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f1beb commit 3fdb6e3Copy full SHA for 3fdb6e3
Dockerfile
@@ -23,8 +23,10 @@ RUN apt install -y --no-install-recommends \
23
wget \
24
vim \
25
gcc \
26
- g++ \
27
- cmake
+ g++
+
28
+# 安装CMake
29
+RUN wget https://github.com/Kitware/CMake/releases/download/v4.0.1/cmake-4.0.1-linux-x86_64.sh && bash cmake-4.0.1-linux-x86_64.sh && rm -rf cmake-4.0.1-linux-x86_64.sh
30
31
# 克隆代码
32
RUN git clone https://github.com/kvcache-ai/ktransformers.git
0 commit comments