Skip to content

Commit d9ebbd1

Browse files
ngrozaeLeiWang1999
authored andcommitted
[Bugfix][OpenVINO] fix_dockerfile_openvino (vllm-project#9552)
Signed-off-by: LeiWang1999 <[email protected]>
1 parent 3f3393c commit d9ebbd1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile.openvino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ RUN --mount=type=bind,source=.git,target=.git \
1515
if [ "$GIT_REPO_CHECK" != 0 ]; then bash tools/check_repo.sh ; fi
1616

1717
# install build requirements
18-
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" python3 -m pip install -r /workspace/vllm/requirements-build.txt
18+
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" python3 -m pip install -r /workspace/requirements-build.txt
1919
# build vLLM with OpenVINO backend
20-
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" VLLM_TARGET_DEVICE="openvino" python3 -m pip install /workspace/vllm/
20+
RUN PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu" VLLM_TARGET_DEVICE="openvino" python3 -m pip install /workspace
2121

22-
COPY examples/ /workspace/vllm/examples
23-
COPY benchmarks/ /workspace/vllm/benchmarks
22+
COPY examples/ /workspace/examples
23+
COPY benchmarks/ /workspace/benchmarks
2424

2525
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)