mirror of
https://github.com/docker/cli.git
synced 2026-01-19 21:41:31 +03:00
The runc compile currently fails on s390x: Step 35 : RUN set -x && export GOPATH="$(mktemp -d)" && git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" && cd "$GOPATH/src/github.com/opencontainers/runc" && git checkout -q "$RUNC_COMMIT" && make static BUILDTAGS="seccomp apparmor selinux" && cp runc /usr/local/bin/docker-runc [snip] # 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> The problem is that the installed libseccomp version in trusty is too old. Fix this and install version 2.3.0 of libseccomp like it is done in the x86 Dockerfile. Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com> Upstream-commit: 97f45bd629fa3e5921c5a70f3e8087c1afbb07a6 Component: engine