Merge pull request #7069 from arizvisa/GH-6920

Updated docker's default config to use regular bourne shell instead of bourne again.
This commit is contained in:
Megan Marsh 2018-12-10 11:29:27 -08:00 committed by GitHub
commit 32f226eda0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) {
// Defaults
if len(c.RunCommand) == 0 {
c.RunCommand = []string{"-d", "-i", "-t", "{{.Image}}", "/bin/bash"}
c.RunCommand = []string{"-d", "-i", "-t", "{{.Image}}", "--entrypoint=/bin/sh"}
}
// Default Pull if it wasn't set