diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-14 13:05:25 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-14 13:10:03 -0400 |
commit | 6535c8b9e82a1cc1f5c8d03215b9de5851b2010c (patch) | |
tree | d99a0008d253b9bbb61f899eae6ca0143171a9af /pkg/api/handlers/compat/containers_create.go | |
parent | d83077b16c14b05967fa1f92c7067299367a286f (diff) | |
download | podman-6535c8b9e82a1cc1f5c8d03215b9de5851b2010c.tar.gz podman-6535c8b9e82a1cc1f5c8d03215b9de5851b2010c.tar.bz2 podman-6535c8b9e82a1cc1f5c8d03215b9de5851b2010c.zip |
Fix handling of entrypoint
If a user specifies an entrypoint of "" then we should not use the images
entrypoint.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/api/handlers/compat/containers_create.go')
-rw-r--r-- | pkg/api/handlers/compat/containers_create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/compat/containers_create.go b/pkg/api/handlers/compat/containers_create.go index 031e30b7e..cbee8a8b6 100644 --- a/pkg/api/handlers/compat/containers_create.go +++ b/pkg/api/handlers/compat/containers_create.go @@ -81,7 +81,7 @@ func makeCreateConfig(ctx context.Context, containerConfig *config.Config, input workDir = input.WorkingDir } - if len(input.Entrypoint) == 0 { + if input.Entrypoint == nil { entrypointSlice, err := newImage.Entrypoint(ctx) if err != nil { return createconfig.CreateConfig{}, err |