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 f7a39b2 commit 475b307Copy full SHA for 475b307
cwl_utils/sandboxjs.py
@@ -320,7 +320,7 @@ def new_js_proc(
320
nodeimg = "docker.io/node:alpine"
321
if container_engine == "singularity":
322
nodeimg = f"docker://{nodeimg}"
323
- elif container_engine == "podman":
+ elif container_engine in ("podman", "udocker"):
324
nodeimg = "docker.io/library/node:alpine"
325
326
if not self.have_node_slim:
@@ -352,6 +352,8 @@ def new_js_proc(
352
)
353
if matches:
354
dockerimgs = matches[0]
355
+ else:
356
+ dockerimgs = ""
357
else:
358
raise Exception(
359
f"Unknown container_engine: {container_engine}."
0 commit comments