Skip to content

Commit 9e7cd45

Browse files
fix DeepGEMM recursive clone over https
1 parent 7fbe527 commit 9e7cd45

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

container/Dockerfile.vllm

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,13 @@ RUN --mount=type=bind,source=./container/deps/,target=/tmp/deps \
187187
cd tools/ep_kernels && \
188188
bash install_python_libraries.sh && \
189189
cd ep_kernels_workspace && \
190-
git clone --recursive https://github.com/deepseek-ai/DeepGEMM.git && \
190+
git clone https://github.com/deepseek-ai/DeepGEMM.git && \
191191
cd DeepGEMM && \
192-
python setup.py install; \
192+
sed -i 's|git@github.com:|https://github.com/|g' .gitmodules && \
193+
git submodule sync --recursive && \
194+
git submodule update --init --recursive && \
195+
cat install.sh && \
196+
./install.sh; \
193197
else \
194198
uv pip install pip cuda-python && \
195199
mkdir /opt/vllm && \
@@ -201,9 +205,13 @@ RUN --mount=type=bind,source=./container/deps/,target=/tmp/deps \
201205
cd tools/ep_kernels && \
202206
bash install_python_libraries.sh && \
203207
cd ep_kernels_workspace && \
204-
git clone --recursive https://github.com/deepseek-ai/DeepGEMM.git && \
208+
git clone https://github.com/deepseek-ai/DeepGEMM.git && \
205209
cd DeepGEMM && \
206-
python setup.py install; \
210+
sed -i 's|git@github.com:|https://github.com/|g' .gitmodules && \
211+
git submodule sync --recursive && \
212+
git submodule update --init --recursive && \
213+
cat install.sh && \
214+
./install.sh; \
207215
fi
208216

209217
# Common dependencies

container/build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ SGLANG_BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
112112
SGLANG_BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
113113

114114
NIXL_REF=3c47a48955e6f96bd5d4fb43a9d80bb64722f8e4
115-
116115
NIXL_UCX_EFA_REF=7ec95b95e524a87e81cac92f5ca8523e3966b16b
117116

118117
NO_CACHE=""

0 commit comments

Comments
 (0)