mirror of
https://github.com/mudler/luet.git
synced 2025-09-11 20:19:30 +00:00
Update gomod and vendor
This commit is contained in:
13
vendor/github.com/moby/buildkit/executor/oci/spec.go
generated
vendored
Normal file
13
vendor/github.com/moby/buildkit/executor/oci/spec.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
package oci
|
||||
|
||||
// ProcMode configures PID namespaces
|
||||
type ProcessMode int
|
||||
|
||||
const (
|
||||
// ProcessSandbox unshares pidns and mount procfs.
|
||||
ProcessSandbox ProcessMode = iota
|
||||
// NoProcessSandbox uses host pidns and bind-mount procfs.
|
||||
// Note that NoProcessSandbox allows build containers to kill (and potentially ptrace) an arbitrary process in the BuildKit host namespace.
|
||||
// NoProcessSandbox should be enabled only when the BuildKit is running in a container as an unprivileged user.
|
||||
NoProcessSandbox
|
||||
)
|
Reference in New Issue
Block a user