reg/vendor/github.com/docker/docker-ce/components/engine/builder/dockerfile/builder_unix.go

8 lines
121 B
Go
Raw Normal View History

// +build !windows
package dockerfile
func defaultShellForOS(os string) []string {
return []string{"/bin/sh", "-c"}
}