Skip to content

Commit 8b1cda3

Browse files
committed
Bump php memory limit to 256M
1 parent 9acdc54 commit 8b1cda3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ RUN echo "cgi.fix_pathinfo=0" > ${php_vars} &&\
202202
echo "upload_max_filesize = 100M" >> ${php_vars} &&\
203203
echo "post_max_size = 100M" >> ${php_vars} &&\
204204
echo "variables_order = \"EGPCS\"" >> ${php_vars} && \
205-
echo "memory_limit = 128M" >> ${php_vars} && \
205+
echo "memory_limit = 256M" >> ${php_vars} && \
206206
sed -i \
207207
-e "s/;catch_workers_output\s*=\s*yes/catch_workers_output = yes/g" \
208208
-e "s/pm.max_children = 5/pm.max_children = 4/g" \
@@ -226,9 +226,7 @@ RUN apk add --no-cache mysql-client \
226226
su-exec \
227227
rsync
228228
RUN export PATH="~/.composer/vendor/bin:$PATH" && \
229-
echo "sendmail_path=`which true`" >> ${php_vars} && \
230-
composer global require -n "hirak/prestissimo:^0.3" && \
231-
composer global require -n "pantheon-systems/terminus:~1"
229+
echo "sendmail_path=`which true`" >> ${php_vars}
232230

233231
# Add Scripts
234232
ADD scripts/start.sh /start.sh

0 commit comments

Comments
 (0)