Commit ba242f76 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 025f1a61
...@@ -186,6 +186,7 @@ jobs: ...@@ -186,6 +186,7 @@ jobs:
docker run \ docker run \
--rm \ --rm \
-it \ -it \
--security-opt seccomp=unconfined \
-e PARAM_DIST=$(echo "<< parameters.platform >>" | cut -d: -f1) \ -e PARAM_DIST=$(echo "<< parameters.platform >>" | cut -d: -f1) \
-e PARAM_RELEASE=$(echo "<< parameters.platform >>" | cut -d: -f2) \ -e PARAM_RELEASE=$(echo "<< parameters.platform >>" | cut -d: -f2) \
-v$(pwd):/varnish-cache \ -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