#! /usr/bin/env python3 # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2025 Jacob Babor # # Distributed under terms of the MIT license. import argparse def main(): parser = argparse.ArgumentParser(description="Build a bunch of Docker containers from a bunch of repos in bulk") parser.add_argument('yamlfile',help="Path to a YAML file that contains the repos to download and build from. See README.md for details") args = parser.parse_args() pass main()