--cpus is not a flag for docker build, use cpulimit instead

This commit is contained in:
Erica Marigold 2025-02-06 12:07:45 +05:30
parent af800b150c
commit faef48e85d
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

@ -7,8 +7,7 @@ if [ -z "$NIXOS_TAG" ]; then
exit 1
fi
docker build \
--cpus=$(( $(nproc) / 2 )) \
cpulimit -l 50 docker build \
-t "git.devcomp.xyz/devcomp/nixos:$NIXOS_TAG" \
-f Dockerfile \
--push .