fix entrypoint override (#124)

In case of entrypoint override, image config needs to be passed.
This commit is contained in:
n-marton 2022-01-20 19:28:03 +01:00 committed by GitHub
parent f3c452534d
commit c564dd2e58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {