tailor number of make jobs to system
Build Container Image / build_amd64 (push) Successful in 1m25s Details
Build Container Image / publish_amd64 (push) Successful in 43s Details
Build Container Image / build_arm64 (push) Successful in 3m38s Details
Build Container Image / publish_arm64 (push) Successful in 26s Details
Build Container Image / build_riscv64 (push) Successful in 5m42s Details
Build Container Image / publish_riscv64 (push) Successful in 45s Details
Build Container Image / build_armhf (push) Successful in 7m7s Details
Build Container Image / build_manifest (push) Successful in 5s Details
Build Container Image / publish_armhf (push) Successful in 1m5s Details
Build Container Image / publish_manifest (push) Successful in 33s Details

This commit is contained in:
Daniel Wolf 2023-06-30 19:07:35 -04:00
parent 83d21b4018
commit 84fdcad3c4
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ RUN echo "====== COMPILE NGINX ======" \
--with-pcre \
--with-pcre-jit \
--with-libatomic \
&& make -j4 \
&& make install
&& make -j$(( $(getconf _NPROCESSORS_ONLN) / 2 + 1 )) \
&& make -j$(( $(getconf _NPROCESSORS_ONLN) / 2 + 1 )) install
FROM nephatrine/alpine-s6:latest
LABEL maintainer="Daniel Wolf <nephatrine@gmail.com>"