Use proper number of cpus to compile php instead of hardcoded value (#21)

This commit is contained in:
Alex Rock 2022-10-15 09:46:44 +02:00 committed by GitHub
parent 7bb0a013ef
commit ce873e4459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ RUN git clone --depth=1 --single-branch --branch=frankenphp-8.2 https://github.c
--enable-embed=static \
--enable-zts \
--disable-zend-signals && \
make -j6 && \
make -j$(nproc) && \
make install && \
rm -Rf php-src/ && \
ldconfig && \