mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* Add escript guide docs for classes * Add ClassInstanceRef to objref docs * Use objref.dot to generate svg
12 lines
248 B
Docker
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
|