mirror of
https://github.com/containers/podman.git
synced 2025-12-01 02:27:13 +08:00
vendor: update buildah to latest
Includes a fix for CVE-2024-9407 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
15
vendor/github.com/containers/buildah/define/build.go
generated
vendored
15
vendor/github.com/containers/buildah/define/build.go
generated
vendored
@@ -19,12 +19,11 @@ type AdditionalBuildContext struct {
|
||||
IsURL bool
|
||||
// Value is the name of an image which may or may not have already been pulled.
|
||||
IsImage bool
|
||||
// Value holds a URL, an image name, or an absolute filesystem path.
|
||||
// Value holds a URL (if IsURL), an image name (if IsImage), or an absolute filesystem path.
|
||||
Value string
|
||||
// Absolute filesystem path to downloaded and exported build context
|
||||
// from external tar archive. This will be populated only if following
|
||||
// buildcontext is created from IsURL and was downloaded before in any
|
||||
// of the RUN step.
|
||||
// Absolute filesystem path to a downloaded and exported build context
|
||||
// from an external tar archive. This will be populated only if the
|
||||
// build context was a URL and its contents have been downloaded.
|
||||
DownloadedCache string
|
||||
}
|
||||
|
||||
@@ -374,4 +373,10 @@ type BuildOptions struct {
|
||||
// base images or by a VOLUME instruction to be preserved during RUN
|
||||
// instructions. Newer BuildKit-based docker build doesn't bother.
|
||||
CompatVolumes types.OptionalBool
|
||||
// CompatScratchConfig causes the image, if it does not have a base
|
||||
// image, to begin with a truly empty default configuration instead of
|
||||
// a minimal default configuration. Newer BuildKit-based docker build
|
||||
// provides a minimal initial configuration with a working directory
|
||||
// set in it.
|
||||
CompatScratchConfig types.OptionalBool
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user