testing docker pipelines

This commit is contained in:
Josh Knapp 2025-02-11 10:04:38 -08:00
parent 0943349e59
commit e83d290541

View File

@ -22,7 +22,7 @@ class Pipeline(FunctionCallingBlueprint):
docker_cmd = f"docker run {image}" docker_cmd = f"docker run {image}"
if command: if command:
docker_cmd += f" {command}" docker_cmd += f" {command}"
return os.system(docker_cmd) return docker_cmd #os.system(docker_cmd)
def __init__(self): def __init__(self):
super().__init__() super().__init__()