We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93899c commit 779873aCopy full SHA for 779873a
ChangeLog.md
@@ -3,6 +3,7 @@ AWS Lambda change log
3
4
## ?.?.? / ????-??-??
5
6
+* Speed up build by using `-j $(nproc)` flag for `make`, see #7 - @thekid
7
* Enabled *bcmath* extension - @thekid
8
9
## 2.0.0 / 2021-08-29
src/main/php/xp/lambda/Dockerfile.runtime
@@ -32,7 +32,7 @@ RUN cd php-src-php-${php_version} && ./buildconf --force && ./configure \
32
--disable-xml \
33
--disable-xmlreader \
34
--disable-xmlwriter && \
35
- make all install
+ make -j $(nproc) all install
36
37
# Create XP Bootstrap
38
RUN curl -L https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-${xp_version}.sh \
0 commit comments