Fixes #35199.
Problem
The i686, no IPC job fails in sock_tests at the first socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) call.
The failing runner uses Docker 29.4.2, while a comparable passing run used Docker 29.4.1.
The latest Docker changed the default seccomp profile to block socketcall(2), and the Moby seccomp profile documents the explicit socketcall deny rule as returning ENOSYS.
A previous push attempted to skip only sock_tests - CI failed in util_tests/test_LockDirectory at socketpair(...), which shows the problem is not isolated to one unit test:
https://github.com/bitcoin/bitcoin/actions/runs/25281552739/job/74119501960?pr=35202
Fix
Add Docker's documented --security-opt seccomp=unconfined option to the i686, no IPC job through CI_CONTAINER_CAP.
This is broader than a test skip, but it is limited to the affected CI job and restores socket syscall availability for the full unit and functional test run.