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 06dd0b2 commit 952f0abCopy full SHA for 952f0ab
cwltool/main.py
@@ -699,7 +699,8 @@ def main(argsl=None, # type: List[str]
699
700
# If On windows platform, A default Docker Container is Used if not explicitely provided by user
701
if onWindows() and not args.default_container:
702
- args.default_container = "ubuntu"
+ # 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"
704
705
# If caller provided custom arguments, it may be not every expected
706
# option is set, so fill in no-op defaults to avoid crashing when
0 commit comments