29 lines
897 B
Docker
Executable file
29 lines
897 B
Docker
Executable file
FROM wordpress:6.5.0-php8.2
|
|
|
|
# Install packages under Debian
|
|
RUN apt-get update && \
|
|
apt-get -y install git
|
|
|
|
# Install XDebug from source as described here:
|
|
# https://xdebug.org/docs/install
|
|
# Available branches of XDebug could be seen here:
|
|
# https://github.com/xdebug/xdebug/branches
|
|
RUN cd /tmp && \
|
|
git clone https://github.com/xdebug/xdebug.git && \
|
|
cd xdebug && \
|
|
git checkout xdebug_3_2 && \
|
|
phpize && \
|
|
./configure --enable-xdebug && \
|
|
make && \
|
|
make install && \
|
|
rm -rf /tmp/xdebug
|
|
|
|
# Copy xdebug.ini to /usr/local/etc/php/conf.d/
|
|
COPY files-to-copy/ /
|
|
|
|
# Since this Dockerfile extends the official Docker image `wordpress`,
|
|
# and since `wordpress`, in turn, extends the official Docker image `php`,
|
|
# the helper script docker-php-ext-enable (defined for image `php`)
|
|
# works here, and we can use it to enable xdebug:
|
|
RUN docker-php-ext-enable xdebug
|
|
|