File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ AWS Lambda change log
33
44## ?.?.? / ????-??-??
55
6+ ## 6.1.0 / 2025-07-24
7+
8+ * Removed default memory limit for PHP, let lambda infrastructure take
9+ care of it. See issue #27
10+ (@thekid )
11+
612## 6.0.0 / 2025-05-04
713
814* ** Heads up:** Dropped support for PHP < 7.4, see xp-framework/rfc #343
Original file line number Diff line number Diff line change @@ -34,4 +34,6 @@ RUN curl -L https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/
3434 && chmod 755 /opt/php/bootstrap \
3535 && head -1 /opt/php/bootstrap | grep '^#!'
3636
37- RUN cd /opt/php && strip bin/php && zip -9 runtime.zip bin/php bootstrap
37+ RUN echo "memory_limit=-1" > /opt/php/bin/php.ini
38+
39+ RUN cd /opt/php && strip bin/php && zip -9 runtime.zip bin/php bin/php.ini bootstrap
You can’t perform that action at this time.
0 commit comments