From 5caf9bea7d0b35834d460078cf0b1ff73d8175e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Brin?= Date: Wed, 3 Apr 2024 21:16:28 +0200 Subject: [PATCH] Fix Iso build issue with podman Pids Limits is too low on podman (2048). It breaks the full packages installation. Bump the pids limit to 4096 --- docker/build-iso-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build-iso-image.sh b/docker/build-iso-image.sh index 44e8a3d..0d9ff49 100755 --- a/docker/build-iso-image.sh +++ b/docker/build-iso-image.sh @@ -35,7 +35,7 @@ if ! findmnt ${pkgcache} >/dev/null; then fi # Run the build process in the container -docker run --rm --user 0:0 --privileged -it --workdir /workspace \ +docker run --rm --pids-limit=4096 --user 0:0 --privileged -it --workdir /workspace \ --volume=${repodir}:/workspace \ --volume=${pkgcache}:/var/cache/pacman/pkg \ ${dockerimg} setarch ${sysrescuearch} /bin/bash /workspace/build.sh "$@"