Skip to content

Commit 67149fa

Browse files
committed
Update xdebug and redis. Remove unnecessary fix on Imagick for php84.
1 parent 9d75d56 commit 67149fa

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

bin/php84/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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
5151
RUN 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
5655
RUN 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 .. && \

0 commit comments

Comments
 (0)