Revert "revert changes to docker entrypoint; since this is a backwards-breaking change it needs to wait for a minor release"

This reverts commit 2a79d64ae0.
This commit is contained in:
Adrien Delorme 2018-12-13 10:23:46 +01:00
parent 2a79d64ae0
commit 2718a5ed62
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", "--entrypoint=/bin/sh", "--", "{{.Image}}"}
}
// Default Pull if it wasn't set