We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c32ccdf + 06e4e09 commit e58be59Copy full SHA for e58be59
1 file changed
pkg/cri/server/container_create_windows.go
@@ -62,7 +62,7 @@ func (c *criService) containerSpec(
62
63
// Apply envs from image config first, so that envs from container config
64
// can override them.
65
- env := imageConfig.Env
+ env := append([]string{}, imageConfig.Env...)
66
for _, e := range config.GetEnvs() {
67
env = append(env, e.GetKey()+"="+e.GetValue())
68
}
0 commit comments