Skip to content

Commit 161c338

Browse files
authored
fix vllm components images building. (#667)
Signed-off-by: zhlsunshine <[email protected]>
1 parent 2d5130f commit 161c338

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

comps/llms/text-generation/vllm/langchain/build_docker_microservice.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
cd ../../../../
4+
cd ../../../../../
55
docker build \
66
-t opea/llm-vllm:latest \
77
--build-arg https_proxy=$https_proxy \

comps/llms/text-generation/vllm/langchain/dependency/build_docker_vllm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fi
3030

3131
# Build the docker image for vLLM based on the hardware mode
3232
if [ "$hw_mode" = "hpu" ]; then
33-
docker build -f docker/Dockerfile.intel_hpu -t opea/vllm:hpu --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy
33+
docker build -f Dockerfile.intel_hpu -t opea/vllm:hpu --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy
3434
else
3535
git clone https://github.com/vllm-project/vllm.git
3636
cd ./vllm/
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
cd ../../../../
4+
cd ../../../../../
55
docker build \
66
-t opea/llm-vllm-ray:latest \
77
--build-arg https_proxy=$https_proxy \
88
--build-arg http_proxy=$http_proxy \
9-
-f comps/llms/text-generation/vllm/ray/docker/Dockerfile .
9+
-f comps/llms/text-generation/vllm/ray/Dockerfile .

comps/llms/text-generation/vllm/ray/dependency/build_docker_vllmray.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Copyright (C) 2024 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

4-
cd ../../../../
4+
cd ../../../../../../
55

66
docker build \
7-
-f comps/llms/text-generation/vllm/ray/server/docker/Dockerfile \
7+
-f comps/llms/text-generation/vllm/ray/dependency/Dockerfile \
88
-t opea/vllm_ray:habana \
99
--network=host \
1010
--build-arg http_proxy=${http_proxy} \

0 commit comments

Comments
 (0)