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
This commit is contained in:
Frédéric Brin 2024-04-03 21:16:28 +02:00
parent 7bad4678c6
commit 5caf9bea7d

View file

@ -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 "$@"