mirror of
https://github.com/containers/podman.git
synced 2025-12-09 15:19:35 +08:00
build(deps): bump github.com/openshift/imagebuilder
Bumps [github.com/openshift/imagebuilder](https://github.com/openshift/imagebuilder) from 1.2.4-0.20230207193036-6e08c897da73 to 1.2.4. - [Release notes](https://github.com/openshift/imagebuilder/releases) - [Commits](https://github.com/openshift/imagebuilder/commits/v1.2.4) --- updated-dependencies: - dependency-name: github.com/openshift/imagebuilder dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
5
vendor/github.com/openshift/imagebuilder/builder.go
generated
vendored
5
vendor/github.com/openshift/imagebuilder/builder.go
generated
vendored
@@ -39,11 +39,16 @@ type Run struct {
|
||||
Args []string
|
||||
// Mounts are mounts specified through the --mount flag inside the Containerfile
|
||||
Mounts []string
|
||||
// Network specifies the network mode to run the container with
|
||||
Network string
|
||||
}
|
||||
|
||||
type Executor interface {
|
||||
Preserve(path string) error
|
||||
// EnsureContainerPath should ensure that the directory exists, creating any components required
|
||||
EnsureContainerPath(path string) error
|
||||
// EnsureContainerPathAs should ensure that the directory exists, creating any components required
|
||||
// with the specified owner and mode, if either is specified
|
||||
EnsureContainerPathAs(path, user string, mode *os.FileMode) error
|
||||
Copy(excludes []string, copies ...Copy) error
|
||||
Run(run Run, config docker.Config) error
|
||||
|
||||
Reference in New Issue
Block a user