Skip to content

Commit 952f0ab

Browse files
committed
changing default container for windows from ubuntu to alpine-bash
1 parent 06dd0b2 commit 952f0ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltool/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,8 @@ def main(argsl=None, # type: List[str]
699699

700700
# If On windows platform, A default Docker Container is Used if not explicitely provided by user
701701
if onWindows() and not args.default_container:
702-
args.default_container = "ubuntu"
702+
# This docker image is a minimal alpine image with bash installed(size 6 mb). source: https://github.com/frol/docker-alpine-bash
703+
args.default_container = "frolvlad/alpine-bash"
703704

704705
# If caller provided custom arguments, it may be not every expected
705706
# option is set, so fill in no-op defaults to avoid crashing when

0 commit comments

Comments
 (0)