summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/engine_image.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-17 14:30:49 -0400
committerGitHub <noreply@github.com>2020-04-17 14:30:49 -0400
commita5884c07dfb092eab88cf153238e714910388a06 (patch)
tree2ff9de3f27c2cc9f9cc4b630494b93aeab78fc46 /pkg/domain/entities/engine_image.go
parentd68b028c9440cd3f952327b05f1bc8dee00ab98a (diff)
parent60624f948bf0067059f3d05e1bdc54589a9911e9 (diff)
downloadpodman-a5884c07dfb092eab88cf153238e714910388a06.tar.gz
podman-a5884c07dfb092eab88cf153238e714910388a06.tar.bz2
podman-a5884c07dfb092eab88cf153238e714910388a06.zip
Merge pull request #5819 from vrothberg/v2-build
podmanV2: implement build
Diffstat (limited to 'pkg/domain/entities/engine_image.go')
-rw-r--r--pkg/domain/entities/engine_image.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_image.go b/pkg/domain/entities/engine_image.go
index e3b606550..052e7bee5 100644
--- a/pkg/domain/entities/engine_image.go
+++ b/pkg/domain/entities/engine_image.go
@@ -7,6 +7,7 @@ import (
)
type ImageEngine interface {
+ Build(ctx context.Context, containerFiles []string, opts BuildOptions) (*BuildReport, error)
Config(ctx context.Context) (*config.Config, error)
Delete(ctx context.Context, nameOrId []string, opts ImageDeleteOptions) (*ImageDeleteReport, error)
Diff(ctx context.Context, nameOrId string, options DiffOptions) (*DiffReport, error)