10 lines
203 B
Docker
10 lines
203 B
Docker
# NAME leenooks/php
|
|
# VERSION 8.3-fpm-test
|
|
|
|
FROM registry.dege.au/leenooks/php:8.3-fpm
|
|
|
|
# Add xdebug
|
|
RUN apk --no-cache add linux-headers \
|
|
&& pecl_install xdebug \
|
|
&& apk --no-cache del linux-headers
|