github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/moby/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  }