Files
podman/vendor/github.com/containers/buildah/define/mount_unsupported.go
Paul Holzinger 83a0299309 vendor: update buildah to latest
Includes a fix for CVE-2024-9407

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-10-02 18:04:39 +02:00

15 lines
268 B
Go

//go:build darwin || windows || netbsd
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
// TempDir is the default for storing temporary files
TempDir = "/var/tmp"
)
// Mount potions for bind
var BindOptions = []string{""}