Skip to content

Commit

Permalink
fix: increase php memory limit
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Aug 27, 2023
1 parent e6970c6 commit da3c091
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ RUN apt-get update \
&& IPE_GD_WITHOUTAVIF=1 install-php-extensions bcmath gd intl mysqli pdo_mysql sockets bz2 soap zip gmp pcntl redis imagick xsl calendar amqp \
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
&& echo 'memory_limit=512M' > /usr/local/etc/php/conf.d/docker.ini

RUN curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash - \
&& . /root/.bashrc \
Expand Down

0 comments on commit da3c091

Please sign in to comment.