From 086423dc352e393cafb54b1380eebd8391f0b365 Mon Sep 17 00:00:00 2001 From: Yikun Jiang Date: Fri, 18 Apr 2025 19:15:17 +0800 Subject: [PATCH] [Docker] Bump Dockerfile version to v0.8.4 (#577) ### What this PR does / why we need it? Bump Dockerfile version to v0.8.4 ### Does this PR introduce _any_ user-facing change? docker image are using v0.8.4 version vLLM ### How was this patch tested? CI passed Closes: https://github.com/vllm-project/vllm-ascend/pull/571 Signed-off-by: Yikun Jiang --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 83f04ec..a5c307d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN pip config set global.index-url ${PIP_INDEX_URL} # Install vLLM ARG VLLM_REPO=https://github.com/vllm-project/vllm.git -ARG VLLM_TAG=main +ARG VLLM_TAG=v0.8.4 RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /workspace/vllm RUN VLLM_TARGET_DEVICE="empty" python3 -m pip install /workspace/vllm/ --extra-index https://download.pytorch.org/whl/cpu/ # In x86, triton will be installed by vllm. But in Ascend, triton doesn't work correctly. we need to uninstall it.