(ctx context.Context, reader io.Reader, options client.ImageBuildOptions)
| 199 | } |
| 200 | |
| 201 | func (d *DryRunClient) ImageBuild(ctx context.Context, reader io.Reader, options client.ImageBuildOptions) (client.ImageBuildResult, error) { |
| 202 | return client.ImageBuildResult{ |
| 203 | Body: io.NopCloser(bytes.NewReader(nil)), |
| 204 | }, nil |
| 205 | } |
| 206 | |
| 207 | func (d *DryRunClient) ImageInspect(ctx context.Context, imageName string, options ...client.ImageInspectOption) (client.ImageInspectResult, error) { |
| 208 | caller := getCallingFunction() |