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 34d4e78 commit a2252e6Copy full SHA for a2252e6
Dockerfile
@@ -6,7 +6,9 @@ RUN apt-get update && \
6
apt-get install -y autoconf pkg-config libssl-dev git unzip libzip-dev zlib1g-dev && \
7
pecl install mongodb && docker-php-ext-enable mongodb && \
8
pecl install xdebug && docker-php-ext-enable xdebug && \
9
- docker-php-ext-install -j$(nproc) zip
+ docker-php-ext-install -j$(nproc) zip && \
10
+ cp /usr/local/etc/php/php.ini-development /usr/local/etc/php/php.ini && \
11
+ echo "memory_limit=-1" >> /usr/local/etc/php/php.ini
12
13
COPY --from=composer:2.6.2 /usr/bin/composer /usr/local/bin/composer
14
0 commit comments