From d961b303c4be4eaad656760cf45876ae653616e8 Mon Sep 17 00:00:00 2001 From: sgurunat Date: Thu, 14 Nov 2024 08:24:11 +0000 Subject: [PATCH] Modified test_compose_on_gaudi compose to use build.yaml file Signed-off-by: sgurunat --- ProductivitySuite/tests/test_compose_on_gaudi.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ProductivitySuite/tests/test_compose_on_gaudi.sh b/ProductivitySuite/tests/test_compose_on_gaudi.sh index c5d59bbb2..89a9a7aea 100755 --- a/ProductivitySuite/tests/test_compose_on_gaudi.sh +++ b/ProductivitySuite/tests/test_compose_on_gaudi.sh @@ -19,10 +19,10 @@ function build_docker_images() { git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../ echo "Build all the images with --no-cache, check docker_image_build.log for details..." - docker compose -f build_vllm.yaml build --no-cache > ${LOG_PATH}/docker_image_build.log + docker compose -f build.yaml build --no-cache > ${LOG_PATH}/docker_image_build.log - docker pull ghcr.io/huggingface/tei-gaudi:latest - docker pull opea/vllm-hpu:latest + # docker pull ghcr.io/huggingface/tei-gaudi:latest + # docker pull opea/vllm-hpu:latest docker images && sleep 1s }