def parse_args()

in dockerfiles.py [0:0]


def parse_args() -> str:
    """
    Parse command-line arguments and return the release directory path.

    Returns:
        str: The path to the release directory.
    """
    parser = argparse.ArgumentParser(description="Generate Dockerfiles from base templates.")
    parser.add_argument(
        "release_dir",
        help="Path to the release directory containing public.json and template files."
    )
    args = parser.parse_args()
    return args.release_dir