builder_unix.go 197 B

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