mirror of https://github.com/docker/docs.git
Merge pull request #18947 from jfrazelle/fix-seccomp-unsupported
fix default profile where unsupported
This commit is contained in:
commit
94e0760868
|
@ -1,4 +1,4 @@
|
|||
// +build linux
|
||||
// +build linux,seccomp
|
||||
|
||||
package native
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
// +build linux,!seccomp
|
||||
|
||||
package native
|
||||
|
||||
import "github.com/opencontainers/runc/libcontainer/configs"
|
||||
|
||||
var (
|
||||
defaultSeccompProfile *configs.Seccomp
|
||||
)
|
Loading…
Reference in New Issue