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 197eac9 commit c1875d5Copy full SHA for c1875d5
cwl_utils/sandboxjs.py
@@ -301,11 +301,11 @@ def new_js_proc(
301
302
if nodejs is None or nodejs is not None and required_node_version is False:
303
try:
304
- nodeimg = "docker.io/node:alpine"
+ nodeimg = "node:alpine"
305
if container_engine == "singularity":
306
- nodeimg = f"docker://{nodeimg}"
+ nodeimg = f"docker://docker.io/{nodeimg}"
307
elif container_engine in ("podman", "udocker"):
308
- nodeimg = "docker.io/library/node:alpine"
+ nodeimg = f"docker.io/library/{nodeimg}"
309
310
if not self.have_node_slim:
311
singularity_cache: Optional[str] = None
0 commit comments