We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 819f6c1 commit 14df246Copy full SHA for 14df246
cwltool/job.py
@@ -621,6 +621,9 @@ def run(self,
621
img_id = str(docker_req["dockerImageId"])
622
elif 'dockerPull' in docker_req:
623
img_id = str(docker_req["dockerPull"])
624
+ cmd = [user_space_docker_cmd, "pull", img_id]
625
+ _logger.info(Text(cmd))
626
+ subprocess.check_call(cmd, stdout=sys.stderr)
627
else:
628
raise WorkflowException(SourceLine(docker_req).makeError(
629
"Docker image must be specified as 'dockerImageId' or "
0 commit comments