11 lines
238 B
Go
11 lines
238 B
Go
|
// +build !seccomp
|
||
|
|
||
|
package container
|
||
|
|
||
|
import (
|
||
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
||
|
)
|
||
|
|
||
|
// DefaultSeccompProfile defines the whitelist for the default seccomp profile.
|
||
|
var DefaultSeccompProfile = &specs.LinuxSeccomp{}
|