18 lines
502 B
Python
Executable File
18 lines
502 B
Python
Executable File
#! /usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# vim:fenc=utf-8
|
|
#
|
|
# Copyright © 2025 Jacob Babor <jacob@babor.tech>
|
|
#
|
|
# 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()
|