Skip to content

Commit 3ce387a

Browse files
authored
Fix image build fail issue. (opea-project#611)
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent 341f97a commit 3ce387a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/_comps-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
cd ${{ github.workspace }}
6969
if [[ $(grep -c "llava-tgi:" ${docker_compose_yml}) != 0 ]]; then
70-
git clone https://github.com/yuanwu2017/tgi-gaudi.git && cd tgi-gaudi && git checkout v2.0.4
70+
git clone https://github.com/yuanwu2017/tgi-gaudi.git && cd tgi-gaudi && git checkout v2.0.4 && cd ../
7171
fi
7272
if [[ $(grep -c "vllm-openvino:" ${docker_compose_yml}) != 0 ]]; then
7373
git clone https://github.com/vllm-project/vllm.git vllm-openvino

.github/workflows/docker/compose/llms-compose-cd.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ services:
88
image: ${REGISTRY:-opea}/llm-native:${TAG:-latest}
99
vllm-openvino:
1010
build:
11-
dockerfile: vllm-openvino/Dockerfile.openvino
11+
context: vllm-openvino
12+
dockerfile: Dockerfile.openvino
1213
image: ${REGISTRY:-opea}/vllm-openvino:${TAG:-latest}

.github/workflows/docker/compose/lvms-compose-cd.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ services:
2323
image: ${REGISTRY:-opea}/lvm-tgi:${TAG:-latest}
2424
llava-tgi:
2525
build:
26-
dockerfile: tgi-gaudi/Dockerfile
26+
context: tgi-gaudi
27+
dockerfile: Dockerfile
2728
image: ${REGISTRY:-opea}/llava-tgi:${TAG:-latest}

0 commit comments

Comments
 (0)