diff --git a/builder/py/orchestrate.py b/builder/py/orchestrate.py index 28c663d..0dd31ff 100644 --- a/builder/py/orchestrate.py +++ b/builder/py/orchestrate.py @@ -320,7 +320,7 @@ def main() -> int: ORCHESTRATOR_RUNTIME: RuntimeConfig(args.orchestrator_image, args.orchestrator_dockerfile, args.orchestrator_context), PACKAGE_BUILDER_RUNTIME: RuntimeConfig(args.package_builder_image, args.package_builder_dockerfile, args.package_builder_context), LIVE_HELPER_RUNTIME: RuntimeConfig(args.live_helper_image, args.live_helper_dockerfile, args.live_helper_context), - }, keep=args.keep_containers) + }) Orchestrator(root, runtimes).run(args.all_profiles, args.profile or "") return 0