|
| 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() |
0 commit comments