Open 18827555809 opened 1 week ago
I executed the following code in the Docker image you provided,
package main import ( "log" sg "github.com/seccomp/libseccomp-golang" ) func main() { _, err := sg.NewFilter(sg.ActKillProcess) if err != nil { log.Printf("Failed to create new filter: %v", err) return } }
But got the error 'Failed to create new filter: could not create filter'. Because of this error, the 'sandbox' cannot run.
I executed the following code in the Docker image you provided,
But got the error 'Failed to create new filter: could not create filter'. Because of this error, the 'sandbox' cannot run.