Files
docker-cli/components/engine/builder/dockerfile/builder_unix.go
John Howard 429224cba5 LCOW: Set correct default shell for platform in builder
Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: fe7b4d8fcd737b9162540149acc427d51d1ddfb9
Component: engine
2017-06-20 19:54:33 -07:00

8 lines
133 B
Go

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