diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/docker/frontend.py')
-rw-r--r-- | tests/wpt/web-platform-tests/tools/docker/frontend.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/tools/docker/frontend.py b/tests/wpt/web-platform-tests/tools/docker/frontend.py index c4a20734582..976156cf65a 100644 --- a/tests/wpt/web-platform-tests/tools/docker/frontend.py +++ b/tests/wpt/web-platform-tests/tools/docker/frontend.py @@ -29,6 +29,8 @@ def run(*args, **kwargs): build() args = ["docker", "run"] + args.extend(["--security-opt", "seccomp:%s" % + os.path.join(wpt_root, "tools", "docker", "seccomp.json")]) if kwargs["privileged"]: args.append("--privileged") if kwargs["checkout"]: |