Skip to content

Commit 985920c

Browse files
authored
Merge pull request #2505 from crosbymichael/cmdargs
Add WithImageConfigArgs to replace CMD on image
2 parents 362405f + e956441 commit 985920c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

oci/spec_opts_unix.go

+9
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ func WithLinuxNamespace(ns specs.LinuxNamespace) SpecOpts {
106106

107107
// WithImageConfig configures the spec to from the configuration of an Image
108108
func WithImageConfig(image Image) SpecOpts {
109+
return WithImageConfigArgs(image, nil)
110+
}
111+
112+
// WithImageConfigArgs configures the spec to from the configuration of an Image with additional args that
113+
// replaces the CMD of the image
114+
func WithImageConfigArgs(image Image, args []string) SpecOpts {
109115
return func(ctx context.Context, client Client, c *containers.Container, s *Spec) error {
110116
ic, err := image.Config(ctx)
111117
if err != nil {
@@ -133,6 +139,9 @@ func WithImageConfig(image Image) SpecOpts {
133139
setProcess(s)
134140
s.Process.Env = append(s.Process.Env, config.Env...)
135141
cmd := config.Cmd
142+
if len(args) > 0 {
143+
cmd = args
144+
}
136145
s.Process.Args = append(config.Entrypoint, cmd...)
137146
cwd := config.WorkingDir
138147
if cwd == "" {

0 commit comments

Comments
 (0)