From 15e2cea8a42cdd3c8520c4fc703c5537302b2e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Fa=C4=8Dko?= Date: Wed, 17 Jul 2024 21:42:05 +0200 Subject: [PATCH] disable SELinux in compressor build container --- examples/project/compressor/build-in-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/project/compressor/build-in-container.sh b/examples/project/compressor/build-in-container.sh index 889cb69..1d20d63 100755 --- a/examples/project/compressor/build-in-container.sh +++ b/examples/project/compressor/build-in-container.sh @@ -7,7 +7,7 @@ project_root="$PWD/examples/project/compressor" mkdir -p "$project_root/build" -"$1" run --rm \ +"$1" run --rm --security-opt label=disable \ --mount type=bind,source="$3",target=/mnt/generators \ --mount type=bind,source="$project_root/compressor",target=/mnt/source \ --mount type=bind,source="$project_root/build",target=/mnt/build \