builder_unix.go 178 B

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