mirror of
https://github.com/drasko/codezero.git
synced 2026-01-22 15:53:16 +01:00
final.axf building from top-level build.py including containers
This commit is contained in:
@@ -36,17 +36,19 @@ def build_container(container):
|
||||
"container of type: %s" % (container.type)
|
||||
Exit(1)
|
||||
|
||||
def main():
|
||||
def build_all_containers():
|
||||
container_images = []
|
||||
|
||||
config = configuration_retrieve()
|
||||
|
||||
# config.config_print()
|
||||
for container in config.containers:
|
||||
container_images.append(build_container(container))
|
||||
|
||||
all_cont_packer = AllContainerPacker(container_images, config.containers)
|
||||
|
||||
all_cont_packer.pack_all()
|
||||
return all_cont_packer.pack_all()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
build_all_containers()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user