[Fix]Tiny fix in Dockerfile (#12748)

This commit is contained in:
Baizhou Zhang
2025-11-05 21:04:33 -08:00
committed by GitHub
parent 32ec68faf9
commit bb6a21cd99

View File

@@ -96,7 +96,7 @@ ARG BRANCH_TYPE
COPY --from=local_src /src /tmp/local_src
RUN if [ "$BRANCH_TYPE" = "local" ]; then \
cp -r /tmp/local_src /sgl-workspace/sglang; \
elif [ "$USE_LATEST_SGLANG" == "1" ]; then \
elif [ "$USE_LATEST_SGLANG" = "1" ]; then \
git clone --depth=1 https://github.com/sgl-project/sglang.git /sgl-workspace/sglang; \
else \
git clone --depth=1 --branch v${SGL_VERSION} https://github.com/sgl-project/sglang.git /sgl-workspace/sglang; \