File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -95,13 +95,13 @@ ENV \
95
95
# xdebug
96
96
RUN \
97
97
apt-get update && \
98
- apt-get install -y php-pear gcc make autoconf libc-dev pkg-config php8.1 -dev libmcrypt-dev php8.1 -cgi net-tools
98
+ apt-get install -y php-pear gcc make autoconf libc-dev pkg-config php8.3 -dev libmcrypt-dev php8.3 -cgi net-tools
99
99
RUN \
100
100
mkdir -p /var/www/html/log/xdebug && chown -R www-data:www-data /var/www/html/log/xdebug && \
101
101
pecl install xdebug-3.2.2 && \
102
- bash -c "echo zend_extension=xdebug.so > /etc/php/8.1 /mods-available/xdebug.ini" && \
102
+ bash -c "echo zend_extension=xdebug.so > /etc/php/8.3 /mods-available/xdebug.ini" && \
103
103
bash -c "phpenmod xdebug" && \
104
- cp -f /home/docker/php/develop.ini /etc/php/8.1 /fpm/conf.d/x-develop.ini
104
+ cp -f /home/docker/php/develop.ini /etc/php/8.3 /fpm/conf.d/x-develop.ini
105
105
106
106
# phpunit
107
107
RUN \
@@ -112,7 +112,7 @@ RUN \
112
112
echo "alias phpunit='phpunit -c ~/phpunit/phpunit.xml'" > /root/.bashrc
113
113
114
114
RUN \
115
- apt-get remove -y php8.1 -dev gcc make autoconf libc-dev pkg-config php-pear && \
115
+ apt-get remove -y php8.3 -dev gcc make autoconf libc-dev pkg-config php-pear && \
116
116
apt-get autoremove -y && \
117
117
apt-get clean && rm -rf /var/lib/apt/lists/*
118
118
You can’t perform that action at this time.
0 commit comments