Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/8.1/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ EXPOSE 9000

FROM php AS toolbox

ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny"
ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny php-xdebug"
ARG TOOLBOX_RUNTIME_REQUIREMENTS_EXTRA=""
ARG TOOLBOX_BUILD_REQUIREMENTS=""
ARG TOOLBOX_BUILD_REQUIREMENTS_EXTRA=""
Expand All @@ -193,6 +193,7 @@ RUN /usr/local/bin/docker-install-requirements toolbox; \
composer require deployer/deployer; \
composer update; \
echo "export PATH=$PATH:/var/www/html/vendor/bin" >> /etc/profile; \
echo "xdebug.mode=coverage" > /usr/local/etc/php/conf.d/xdebug-coverage.ini; \
/usr/local/bin/docker-layer-clean

CMD ["php", "-a"]
3 changes: 2 additions & 1 deletion src/8.2/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ EXPOSE 9000

FROM php AS toolbox

ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny"
ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny php-xdebug"
ARG TOOLBOX_RUNTIME_REQUIREMENTS_EXTRA=""
ARG TOOLBOX_BUILD_REQUIREMENTS=""
ARG TOOLBOX_BUILD_REQUIREMENTS_EXTRA=""
Expand All @@ -193,6 +193,7 @@ RUN /usr/local/bin/docker-install-requirements toolbox; \
composer require deployer/deployer; \
composer update; \
echo "export PATH=$PATH:/var/www/html/vendor/bin" >> /etc/profile; \
echo "xdebug.mode=coverage" > /usr/local/etc/php/conf.d/xdebug-coverage.ini; \
/usr/local/bin/docker-layer-clean

CMD ["php", "-a"]
3 changes: 2 additions & 1 deletion src/8.3/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ EXPOSE 9000

FROM php AS toolbox

ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny"
ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny php-xdebug"
ARG TOOLBOX_RUNTIME_REQUIREMENTS_EXTRA=""
ARG TOOLBOX_BUILD_REQUIREMENTS=""
ARG TOOLBOX_BUILD_REQUIREMENTS_EXTRA=""
Expand All @@ -193,6 +193,7 @@ RUN /usr/local/bin/docker-install-requirements toolbox; \
composer require deployer/deployer; \
composer update; \
echo "export PATH=$PATH:/var/www/html/vendor/bin" >> /etc/profile; \
echo "xdebug.mode=coverage" > /usr/local/etc/php/conf.d/xdebug-coverage.ini; \
/usr/local/bin/docker-layer-clean

CMD ["php", "-a"]
3 changes: 2 additions & 1 deletion src/8.4/src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ EXPOSE 9000

FROM php AS toolbox

ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny"
ARG TOOLBOX_RUNTIME_REQUIREMENTS="curl git redis-tools mariadb-client percona-toolkit rsync openssh-client vim.tiny php-xdebug"
ARG TOOLBOX_RUNTIME_REQUIREMENTS_EXTRA=""
ARG TOOLBOX_BUILD_REQUIREMENTS=""
ARG TOOLBOX_BUILD_REQUIREMENTS_EXTRA=""
Expand All @@ -193,6 +193,7 @@ RUN /usr/local/bin/docker-install-requirements toolbox; \
composer require deployer/deployer; \
composer update; \
echo "export PATH=$PATH:/var/www/html/vendor/bin" >> /etc/profile; \
echo "xdebug.mode=coverage" > /usr/local/etc/php/conf.d/xdebug-coverage.ini; \
/usr/local/bin/docker-layer-clean

CMD ["php", "-a"]