manually limit # of jobs to 4

This commit is contained in:
brooke 2024-07-18 07:52:56 -04:00
parent b4564ebe67
commit bb734f9b02

View file

@ -20,7 +20,7 @@ WORKDIR node-v${NODE_VERSION}
RUN ./configure --prefix=/usr --shared-brotli --shared-zlib --shared-libuv --shared-openssl --shared-cares --shared-nghttp2 --ninja --without-npm --with-intl=system-icu --openssl-use-def-ca-store RUN ./configure --prefix=/usr --shared-brotli --shared-zlib --shared-libuv --shared-openssl --shared-cares --shared-nghttp2 --ninja --without-npm --with-intl=system-icu --openssl-use-def-ca-store
RUN make BUILDTYPE=Release RUN make JOBS=4 BUILDTYPE=Release
RUN make install RUN make install