Skip to content

Commit 0e94eec

Browse files
authoredNov 27, 2024··
CI: Add check for conflict image build definition (#944)
Signed-off-by: Lianhao Lu <[email protected]>
1 parent c5b8cdd commit 0e94eec

File tree

6 files changed

+110
-7
lines changed

6 files changed

+110
-7
lines changed
 

‎.github/workflows/docker/compose/intent_detection-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# this file should be run in the root of the repo
55
services:
6-
llm-tgi:
6+
intent-detection-tgi:
77
build:
88
dockerfile: comps/intent_detection/langchain/Dockerfile
9-
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest}
9+
image: ${REGISTRY:-opea}/intent-detection-tgi:${TAG:-latest}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
name: Check Duplicated Image
5+
6+
on:
7+
pull_request:
8+
branches: [main]
9+
types: [opened, reopened, ready_for_review, synchronize]
10+
paths:
11+
- ".github/workflows/docker/compose/*.yaml"
12+
- ".github/workflows/pr-check-duplicated-image.yml"
13+
- ".github/workflows/scripts/check_duplicated_image.py"
14+
workflow_dispatch:
15+
16+
# If there is a new commit, the previous jobs will be canceled
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
19+
cancel-in-progress: true
20+
21+
jobs:
22+
check-duplicated-image:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Clean Up Working Directory
26+
run: sudo rm -rf ${{github.workspace}}/*
27+
28+
- name: Checkout Repo
29+
uses: actions/checkout@v4
30+
31+
- name: Check all the docker image build files
32+
run: |
33+
pip install PyYAML
34+
cd ${{github.workspace}}
35+
build_files=""
36+
for f in `find .github/workflows/docker/compose/ -name '*.yaml'`; do
37+
build_files="$build_files $f"
38+
done
39+
python3 .github/workflows/scripts/check_duplicated_image.py $build_files
40+
shell: bash
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
import argparse
5+
import os.path
6+
import subprocess
7+
import sys
8+
9+
import yaml
10+
11+
images = {}
12+
13+
14+
def check_docker_compose_build_definition(file_path):
15+
with open(file_path, "r") as f:
16+
data = yaml.load(f, Loader=yaml.FullLoader)
17+
for service in data["services"]:
18+
if "build" in data["services"][service] and "image" in data["services"][service]:
19+
bash_command = "echo " + data["services"][service]["image"]
20+
image = (
21+
subprocess.run(["bash", "-c", bash_command], check=True, capture_output=True)
22+
.stdout.decode("utf-8")
23+
.strip()
24+
)
25+
build = data["services"][service]["build"]
26+
context = build.get("context", "")
27+
dockerfile = os.path.normpath(
28+
os.path.join(os.path.dirname(file_path), context, build.get("dockerfile", ""))
29+
)
30+
if not os.path.exists(dockerfile):
31+
# dockerfile not exists in the current repo context, assume it's in 3rd party context
32+
dockerfile = os.path.normpath(os.path.join(context, build.get("dockerfile", "")))
33+
item = {"file_path": file_path, "service": service, "dockerfile": dockerfile}
34+
if image in images and dockerfile != images[image]["dockerfile"]:
35+
print("ERROR: !!! Found Conflicts !!!")
36+
print(f"Image: {image}, Dockerfile: {dockerfile}, defined in Service: {service}, File: {file_path}")
37+
print(
38+
f"Image: {image}, Dockerfile: {images[image]['dockerfile']}, defined in Service: {images[image]['service']}, File: {images[image]['file_path']}"
39+
)
40+
sys.exit(1)
41+
else:
42+
# print(f"Add Image: {image} Dockerfile: {dockerfile}")
43+
images[image] = item
44+
45+
46+
def parse_arg():
47+
parser = argparse.ArgumentParser(
48+
description="Check for conflicts in image build definition in docker-compose.yml files"
49+
)
50+
parser.add_argument("files", nargs="+", help="list of files to be checked")
51+
return parser.parse_args()
52+
53+
54+
def main():
55+
args = parse_arg()
56+
for file_path in args.files:
57+
check_docker_compose_build_definition(file_path)
58+
print("SUCCESS: No Conlicts Found.")
59+
return 0
60+
61+
62+
if __name__ == "__main__":
63+
main()

‎comps/intent_detection/langchain/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ export TGI_LLM_ENDPOINT="http://${your_ip}:8008"
5656

5757
```bash
5858
cd ../../../
59-
docker build --no-cache -t opea/llm-tgi:latest -f comps/intent_detection/langchain/Dockerfile .
59+
docker build --no-cache -t opea/intent-detection-tgi:latest -f comps/intent_detection/langchain/Dockerfile .
6060
```
6161

6262
### 2.4 Run Docker with CLI (Option A)
6363

6464
```bash
65-
docker run -it --name="intent-tgi-server" --net=host --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e TGI_LLM_ENDPOINT=$TGI_LLM_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/llm-tgi:latest
65+
docker run -it --name="intent-tgi-server" --net=host --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e TGI_LLM_ENDPOINT=$TGI_LLM_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/intent-detection-tgi:latest
6666
```
6767

6868
### 2.5 Run with Docker Compose (Option B)

‎comps/intent_detection/langchain/docker_compose_intent.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
shm_size: 1g
1515
command: --model-id ${LLM_MODEL_ID}
1616
llm:
17-
image: opea/llm-tgi:latest
17+
image: opea/intent-detection-tgi:latest
1818
container_name: intent-tgi-server
1919
ports:
2020
- "9000:9000"

‎tests/intent_detection/test_intent_detection_langchain.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ip_address=$(hostname -I | awk '{print $1}')
1010

1111
function build_docker_images() {
1212
cd $WORKPATH
13-
docker build --no-cache -t opea/intent-detection:comps -f comps/intent_detection/langchain/Dockerfile .
13+
docker build --no-cache -t opea/intent-detection-tgi:comps -f comps/intent_detection/langchain/Dockerfile .
1414
}
1515

1616
function start_service() {
@@ -23,7 +23,7 @@ function start_service() {
2323
export TGI_LLM_ENDPOINT="http://${ip_address}:${tgi_endpoint}"
2424
intent_port=5043
2525
unset http_proxy
26-
docker run -d --name="test-comps-intent-server" -p ${intent_port}:9000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e TGI_LLM_ENDPOINT=$TGI_LLM_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/intent-detection:comps
26+
docker run -d --name="test-comps-intent-server" -p ${intent_port}:9000 --ipc=host -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e TGI_LLM_ENDPOINT=$TGI_LLM_ENDPOINT -e HUGGINGFACEHUB_API_TOKEN=$HUGGINGFACEHUB_API_TOKEN opea/intent-detection-tgi:comps
2727

2828
# check whether tgi is fully ready
2929
n=0

0 commit comments

Comments
 (0)
Please sign in to comment.