[Bugfix] Fix openEuler dockerfile error (#6871)

### What this PR does / why we need it?
This pull request addresses several issues within the openEuler
Dockerfiles : `Dockerfile.a3.openEuler` and `Dockerfile.openEuler` to
ensure correct installation and setup of the Mooncake dependency. The
changes primarily involve fixing incorrect file paths for the
mooncake_installer.sh script and streamlining the declaration of the
MOONCAKE_TAG build argument, leading to more robust and accurate
container builds.
### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

- vLLM version: v0.16.0
- vLLM main:
15d76f74e2

Signed-off-by: wjunLu <wjunlu217@gmail.com>
This commit is contained in:
wjunLu
2026-02-28 20:55:18 +08:00
committed by GitHub
parent 5ffae03156
commit 64fba51275
3 changed files with 8 additions and 6 deletions

View File

@@ -18,10 +18,11 @@
FROM quay.io/ascend/cann:8.5.0-910b-openeuler24.03-py3.11
ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
ARG MOONCAKE_TAG="v0.3.8.post1"
WORKDIR /workspace
COPY ./tools/mooncake_installer.sh /vllm-workspace/vllm-ascend/
COPY ./tools/mooncake_installer.sh /vllm-workspace/
SHELL ["/bin/bash", "-c"]
@@ -56,7 +57,6 @@ RUN git clone --depth 1 $VLLM_REPO --branch $VLLM_TAG /vllm-workspace/vllm && \
python3 -m pip cache purge
# Install vllm-ascend
ARG MOONCAKE_TAG="v0.3.8.post1"
ARG SOC_VERSION="ascend910b1"
ENV SOC_VERSION=$SOC_VERSION \
TASK_QUEUE_ENABLE=1 \