"docs/vscode:/vscode.git/clone" did not exist on "7a816f4743ecf07593f6d12eb4a7ef26602a4ad9"
Unverified Commit bb6a21cd authored by Baizhou Zhang's avatar Baizhou Zhang Committed by GitHub
Browse files

[Fix]Tiny fix in Dockerfile (#12748)

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