Tizen_4.0 base
[platform/upstream/docker-engine.git] / builder / dockerfile / builder_unix.go
1 // +build !windows
2
3 package dockerfile
4
5 func defaultShellForPlatform(platform string) []string {
6         return []string{"/bin/sh", "-c"}
7 }