We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 163507c + e7822ea commit 1371d3eCopy full SHA for 1371d3e
1 file changed
pkg/devspace/build/build.go
@@ -93,6 +93,9 @@ func (c *controller) Build(ctx devspacecontext.Context, images []string, options
93
94
for imageConfigName, imageConf := range conf.Images {
95
imageName := imageConf.Image
96
+ if len(images) > 0 && !stringutil.Contains(images, imageConfigName) {
97
+ continue
98
+ }
99
100
// Get image tags
101
imageTags := []string{}
0 commit comments