moby--moby/builder/dockerfile/builder_unix.go

8 lines
121 B
Go

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