I've just run into an issue on a prod server where, upon investigation, it turns out that PHP's display_errors is turned on by default in this image.
I've suppressed it by adding echo "display_errors=0" >> /usr/local/etc/php/conf.d/errors.ini to my Dockerfile (that's FROM this one), but it would be nice if this was handled out of the box.
I'm happy to do a PR for this, but I just wondered whether there was any reason why you had decided not to do this.
I've just run into an issue on a prod server where, upon investigation, it turns out that PHP's
display_errorsis turned on by default in this image.I've suppressed it by adding
echo "display_errors=0" >> /usr/local/etc/php/conf.d/errors.inito my Dockerfile (that'sFROMthis one), but it would be nice if this was handled out of the box.I'm happy to do a PR for this, but I just wondered whether there was any reason why you had decided not to do this.