I have problem installing runc from source:
root@ubuntu:/usr/local/go/bin/src/github.com/opencontainers/runc# make
go build -tags "seccomp" -o runc .
# github.com/seccomp/libseccomp-golang
Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go:25:22: fatal error: seccomp.h: No such file or directory
// #include <seccomp.h>
^
compilation terminated.
make: *** [all] Error 2
That looks like issue 226:
this is not an issue.
You needlibseccomp-dev
libraries in order to build runc withseccomp
support. You can still disable this through go build flags.
PR 220 mentions:
In order to enable
seccomp
support you will need to install libseccomp on your platform.
If you do not with to buildrunc
with seccomp support you can addBUILDTAGS=""
when runningmake
.