polserver/doctools/Dockerfile
Kevin Eady 0988c17f29 Add classes documentation (#717)
* Add escript guide docs for classes

* Add ClassInstanceRef to objref docs

* Use objref.dot to generate svg
2024-10-10 18:06:04 +02:00

12 lines
248 B
Docker

FROM trafex/php-nginx:latest
# Temporary switch to root
USER root
# Install xdebug
RUN apk add --no-cache php83-xsl
RUN echo "display_errors = on\nextension = php_xsl" > /etc/php83/conf.d/settings.ini
# Switch back to non-root user
USER nobody