Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion images/php/7.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,26 @@ RUN rm -f /usr/local/etc/php/conf.d/*sodium.ini \
&& rm -rf /tmp/libsodium \
&& pecl install -o -f libsodium

RUN cd /tmp \
&& git clone --recursive --depth=1 https://github.com/kjdev/php-ext-snappy.git \
&& cd php-ext-snappy \
&& phpize \
&& ./configure \
&& make \
&& make install \
&& cd / \
&& rm -rf /tmp/snappy

RUN cd /tmp \
&& git clone --recursive --depth=1 https://github.com/kjdev/php-ext-lz4.git \
&& cd php-ext-lz4 \
&& phpize \
&& ./configure \
&& make \
&& make install \
&& cd / \
&& rm -rf /tmp/lz4

RUN docker-php-ext-enable \
bcmath \
bz2 \
Expand Down Expand Up @@ -143,7 +163,9 @@ RUN docker-php-ext-enable \
xsl \
yaml \
zip \
pcntl
pcntl \
snappy \
lz4

COPY etc/php-fpm.ini /usr/local/etc/php/conf.d/zz-magento.ini
COPY etc/php-xdebug.ini /usr/local/etc/php/conf.d/zz-xdebug-settings.ini
Expand Down