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
|
||||
|
||||
if config.Entrypoint != nil {
|
||||
opts = append(opts, oci.WithImageConfig(containerConfig.Image))
|
||||
// WithProcessArgs replaces the args on the generated spec.
|
||||
opts = append(opts, oci.WithProcessArgs(args...))
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user