fix entrypoint override (#124)
In case of entrypoint override, image config needs to be passed.
This commit is contained in:
parent
f3c452534d
commit
c564dd2e58
@ -136,6 +136,7 @@ func (d *Driver) createContainer(containerConfig *ContainerConfig, config *TaskC
|
|||||||
var opts []oci.SpecOpts
|
var opts []oci.SpecOpts
|
||||||
|
|
||||||
if config.Entrypoint != nil {
|
if config.Entrypoint != nil {
|
||||||
|
opts = append(opts, oci.WithImageConfig(containerConfig.Image))
|
||||||
// WithProcessArgs replaces the args on the generated spec.
|
// WithProcessArgs replaces the args on the generated spec.
|
||||||
opts = append(opts, oci.WithProcessArgs(args...))
|
opts = append(opts, oci.WithProcessArgs(args...))
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user