| 19 | ) |
| 20 | |
| 21 | type DockerRunner interface { |
| 22 | Tag(ref, tag string) error |
| 23 | Build(ctx context.Context, tag, pkg, dockerContext, builderImage, builderConfigPath, platform string, restart, preCacheImages bool, c spec.CacheProvider, r io.Reader, stdout io.Writer, sbomScan bool, sbomScannerImage, platformType string, imageBuildOpts spec.ImageBuildOptions) error |
| 24 | Save(tgt string, refs ...string) error |
| 25 | Load(src io.Reader) error |
| 26 | Pull(img string) (bool, error) |
| 27 | ContextSupportCheck() error |
| 28 | Builder(ctx context.Context, dockerContext, builderImage, builderConfigPath, platform string, restart bool) (*buildkitClient.Client, error) |
| 29 | } |
no outgoing calls
no test coverage detected