File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -39,26 +39,25 @@ openssl && \
3939 curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
4040
4141# Install xdebug
42- RUN pecl install xdebug-3.4.1 && \
42+ RUN pecl install xdebug-3.4.5 && \
4343 docker-php-ext-enable xdebug && \
4444 mkdir /var/log/xdebug
4545
4646# Install redis
47- RUN pecl install redis-6.1 .0 && \
47+ RUN pecl install redis-6.2 .0 && \
4848 docker-php-ext-enable redis
4949
5050# Install imagick
5151RUN apt-get update && \
5252 apt-get -y --no-install-recommends install --fix-missing libmagickwand-dev && \
5353 rm -rf /var/lib/apt/lists/*
5454
55- # Temporary fix for php84 https://github.com/Imagick/imagick/pull/690#issuecomment-2566064269
5655RUN cd /usr/local/src && \
5756 git clone https://github.com/Imagick/imagick && \
5857 cd imagick && \
5958 git checkout master && \
6059 phpize && \
61- ./configure CPPFLAGS= '-Dphp_strtolower=zend_str_tolower' && \
60+ ./configure && \
6261 make && \
6362 make install && \
6463 cd .. && \
You can’t perform that action at this time.
0 commit comments