Skip to content

Commit c475997

Browse files
committed
Fixes this issue
1 parent 84214e4 commit c475997

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,4 +997,3 @@ Professional support, consulting as well as software development services are av
997997
https://www.cebe.cc/en/contact
998998

999999
Development of this library is sponsored by [cebe.:cloud: "Your Professional Deployment Platform"](https://cebe.cloud).
1000-

tests/docker/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup && \
1111
RUN apt-get update && \
1212
apt-get -y install \
1313
gnupg2 && \
14-
apt-key update && \
14+
# Remove the deprecated apt-key update command
15+
# apt-key update && \
1516
apt-get update && \
1617
apt-get install -y --no-install-recommends \
1718
imagemagick \
@@ -26,7 +27,7 @@ RUN apt-get update && \
2627
libonig-dev \
2728
nano \
2829
git \
29-
unzip\
30+
unzip \
3031
libxml2-dev \
3132
curl \
3233
libcurl4-openssl-dev \
@@ -35,7 +36,7 @@ RUN apt-get update && \
3536
apt-get clean && \
3637
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
3738
# https://xdebug.org/docs/compat \
38-
&& if [ "$BUILD_PHP_VERSION" = "8.2" ] || [ "$BUILD_PHP_VERSION" = "8.3" ] ; then pecl install xdebug ; else pecl install xdebug-3.1.5 ; fi \
39+
&& if [ "$BUILD_PHP_VERSION" = "8.2" ] || [ "$BUILD_PHP_VERSION" = "8.3" ] || [ "$BUILD_PHP_VERSION" = "8.4" ] ; then pecl install xdebug ; else pecl install xdebug-3.1.5 ; fi \
3940
&& docker-php-ext-enable xdebug \
4041
&& docker-php-ext-install \
4142
zip \

0 commit comments

Comments
 (0)