From 952f0ab0c191e7cd6de6179d714d8c256db8f2aa Mon Sep 17 00:00:00 2001 From: kapilkd13 Date: Wed, 19 Jul 2017 23:10:02 +0530 Subject: [PATCH] changing default container for windows from ubuntu to alpine-bash --- cwltool/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cwltool/main.py b/cwltool/main.py index 001792ced..909eaf605 100755 --- a/cwltool/main.py +++ b/cwltool/main.py @@ -699,7 +699,8 @@ def main(argsl=None, # type: List[str] # If On windows platform, A default Docker Container is Used if not explicitely provided by user if onWindows() and not args.default_container: - 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 + args.default_container = "frolvlad/alpine-bash" # If caller provided custom arguments, it may be not every expected # option is set, so fill in no-op defaults to avoid crashing when