diff --git a/pkg/providers/docker_unix.go b/pkg/providers/docker_unix.go index 0a9e35c..8941e5f 100644 --- a/pkg/providers/docker_unix.go +++ b/pkg/providers/docker_unix.go @@ -9,7 +9,7 @@ const ( // TODO: there might be a way were users can configure a template for the // actual execution since some CLIs require some other folders to be mounted // or networks to be shared - sh = ` + sh = `#!/bin/sh termflag=$([ -t 0 ] && echo -n "-t") docker run --rm -i $termflag -v ${PWD}:/tmp/cmd -w /tmp/cmd %s:%s "$@"` )