github.com/zhouyu0/docker-note@v0.0.0-20190722021225-b8d3825084db/builder/dockerfile/builder_unix.go (about)

     1  // +build !windows
     2  
     3  package dockerfile // import "github.com/docker/docker/builder/dockerfile"
     4  
     5  func defaultShellForOS(os string) []string {
     6  	return []string{"/bin/sh", "-c"}
     7  }