container/php-xdebug (sha256:df022d91ebf80b9fe00afef71713fc900e21f5a98ce2066f3c0714ab1a641cc8)
Published 2026-03-18 20:23:50 +00:00 by lubiana
Installation
docker pull git.hannover.ccc.de/lubiana/container/php-xdebug@sha256:df022d91ebf80b9fe00afef71713fc900e21f5a98ce2066f3c0714ab1a641cc8sha256:df022d91ebf80b9fe00afef71713fc900e21f5a98ce2066f3c0714ab1a641cc8Image layers
| ADD alpine-minirootfs-20260127-aarch64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk update # buildkit |
| RUN /bin/sh -c apk upgrade # buildkit |
| RUN /bin/sh -c apk add -U --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ php85-common php85-dom php85-intl php85-mbstring php85-openssl php85-pdo_sqlite php85-phar php85-ffi php85-curl php85-dom php85-fileinfo php85-ftp php85-gettext php85-iconv php85-session php85-simplexml php85-sockets php85-sodium php85-sqlite3 php85-tokenizer php85-xml php85-xmlreader php85-xmlwriter php85-zip php85-ctype php85-dev php85-pecl-apcu php85-pcntl curl git # buildkit |
| COPY /usr/bin/composer /usr/bin/composer # buildkit |
| RUN /bin/sh -c [ -f /usr/bin/php85 ] && cp /usr/bin/php85 /usr/bin/php # buildkit |
| RUN /bin/sh -c rm -rf /var/cache/* # buildkit |
| RUN /bin/sh -c apk update # buildkit |
| RUN /bin/sh -c apk add -U --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ php85-pecl-xdebug curl # buildkit |
| RUN /bin/sh -c echo 'zend_extension=xdebug.so' >> /etc/php85/conf.d/50_xdebug.ini && echo 'xdebug.mode=debug,coverage' >> /etc/php85/conf.d/50_xdebug.ini && echo 'xdebug.start_with_request=yes' >> /etc/php85/conf.d/50_xdebug.ini && echo 'xdebug.client_host=host.docker.internal' >> /etc/php85/conf.d/50_xdebug.ini && echo 'xdebug.client_port=9003' >> /etc/php85/conf.d/50_xdebug.ini && echo 'xdebug.log=/var/log/xdebug.log' >> /etc/php85/conf.d/50_xdebug.ini # buildkit |
| RUN /bin/sh -c rm -rf /var/cache/* # buildkit |