DefaultRunImage returns the default run image metadata
()
| 325 | |
| 326 | // DefaultRunImage returns the default run image metadata |
| 327 | func (b *Builder) DefaultRunImage() RunImageMetadata { |
| 328 | // run.images are ensured in builder.ValidateConfig() |
| 329 | // per the spec, we use the first one as the default |
| 330 | return b.RunImages()[0] |
| 331 | } |
| 332 | |
| 333 | // Mixins returns the mixins of the builder |
| 334 | func (b *Builder) Mixins() []string { |