SetStack sets the stack of the builder
(stackConfig builder.StackConfig)
| 432 | |
| 433 | // SetStack sets the stack of the builder |
| 434 | func (b *Builder) SetStack(stackConfig builder.StackConfig) { |
| 435 | b.metadata.Stack = StackMetadata{ |
| 436 | RunImage: RunImageMetadata{ |
| 437 | Image: stackConfig.RunImage, |
| 438 | Mirrors: stackConfig.RunImageMirrors, |
| 439 | }, |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | // SetSystem sets the system buildpacks of the builder |
| 444 | func (b *Builder) SetSystem(system dist.System) { |
no outgoing calls