Commit 31c4e87e authored by Simon Stridsberg's avatar Simon Stridsberg Committed by Dridi Boukelmoune

Run docker without seccomp rules.

Ubuntu noble tries to use `fchmodat2` (new syscall) and gets permission denied instead of ENOSYS.

This is a small security risk but it's running inside of circleci containers anyway so i think its acceptable.
parent 7f9c9a61
......@@ -185,6 +185,7 @@ jobs:
docker run \
--rm \
-it \
--security-opt seccomp=unconfined \
-e PARAM_DIST=$(echo "<< parameters.platform >>" | cut -d: -f1) \
-e PARAM_RELEASE=$(echo "<< parameters.platform >>" | cut -d: -f2) \
-v$(pwd):/varnish-cache \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment