Skip to content

Commit e956441

Browse files
committed
Add WithImageConfigArgs to replace CMD on image
This allows users to provide args for the process arguments while creating the base spec with an image. It provides the same symantics as Docker where additional args replace the CMD while leaving the ENTRYPOINT the same. Signed-off-by: Michael Crosby <[email protected]>
1 parent c8017d0 commit e956441

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)