(ref, tag string)
| 503 | } |
| 504 | |
| 505 | func (dr *dockerRunnerImpl) Tag(ref, tag string) error { |
| 506 | fmt.Printf("Tagging %s as %s\n", ref, tag) |
| 507 | return dr.command(nil, nil, nil, "image", "tag", ref, tag) |
| 508 | } |
| 509 | |
| 510 | func (dr *dockerRunnerImpl) Build(ctx context.Context, tag, pkg, dockerContext, builderImage, builderConfigPath, platform string, restart, preCacheImages bool, c spec.CacheProvider, stdin io.Reader, stdout io.Writer, sbomScan bool, sbomScannerImage, progressType string, imageBuildOpts spec.ImageBuildOptions) error { |
| 511 | // ensure we have a builder |