diff --git a/comps/third_parties/vllm/src/build_docker_vllm.sh b/comps/third_parties/vllm/src/build_docker_vllm.sh index 379245c36b..c5075303b2 100644 --- a/comps/third_parties/vllm/src/build_docker_vllm.sh +++ b/comps/third_parties/vllm/src/build_docker_vllm.sh @@ -45,10 +45,10 @@ if [ "$hw_mode" = "hpu" ]; then else git clone https://github.com/vllm-project/vllm.git cd ./vllm/ - VLLM_VER="v0.8.2" + VLLM_VER="v0.8.3" echo "Check out vLLM tag ${VLLM_VER}" git checkout ${VLLM_VER} &> /dev/null - docker build -f Dockerfile.cpu -t opea/vllm-cpu:latest --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy + docker build -f docker/Dockerfile.cpu -t opea/vllm-cpu:latest --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy cd .. rm -rf vllm fi diff --git a/tests/llms/test_llms_doc-summarization_vllm.sh b/tests/llms/test_llms_doc-summarization_vllm.sh index 9851dc5a4d..148b69b3e0 100644 --- a/tests/llms/test_llms_doc-summarization_vllm.sh +++ b/tests/llms/test_llms_doc-summarization_vllm.sh @@ -20,10 +20,10 @@ function build_docker_images() { cd $WORKPATH git clone https://github.com/vllm-project/vllm.git cd ./vllm/ - VLLM_VER="v0.8.2" + VLLM_VER="v0.8.3" echo "Check out vLLM tag ${VLLM_VER}" git checkout ${VLLM_VER} &> /dev/null - docker build --no-cache -f Dockerfile.cpu -t ${REGISTRY:-opea}/vllm:${TAG:-latest} --shm-size=128g . + docker build --no-cache -f docker/Dockerfile.cpu -t ${REGISTRY:-opea}/vllm:${TAG:-latest} --shm-size=128g . if [ $? -ne 0 ]; then echo "opea/vllm built fail" exit 1 diff --git a/tests/llms/test_llms_faq-generation_vllm.sh b/tests/llms/test_llms_faq-generation_vllm.sh index 39f0b2db45..04ca9570aa 100644 --- a/tests/llms/test_llms_faq-generation_vllm.sh +++ b/tests/llms/test_llms_faq-generation_vllm.sh @@ -20,10 +20,10 @@ function build_docker_images() { cd $WORKPATH git clone https://github.com/vllm-project/vllm.git cd ./vllm/ - VLLM_VER="v0.8.2" + VLLM_VER="v0.8.3" echo "Check out vLLM tag ${VLLM_VER}" git checkout ${VLLM_VER} &> /dev/null - docker build --no-cache -f Dockerfile.cpu -t ${REGISTRY:-opea}/vllm:${TAG:-latest} --shm-size=128g . + docker build --no-cache -f docker/Dockerfile.cpu -t ${REGISTRY:-opea}/vllm:${TAG:-latest} --shm-size=128g . if [ $? -ne 0 ]; then echo "opea/vllm built fail" exit 1