From a76ba5b00c504501b0f03aba8899e0c41e39385b Mon Sep 17 00:00:00 2001 From: Sven Liebert Date: Sat, 8 Nov 2025 19:49:50 +0100 Subject: [PATCH] [TASK] Disable E_NOTICE in error_reporting When using the PlantUML-Renderer a notice is triggered by tempnam(). This is displayed within the rendered documentation. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c909e4d3..70e902f24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ WORKDIR /opt/guides COPY --from=builder /opt/guides/vendor /opt/guides/vendor RUN echo "memory_limit=4G" >> /usr/local/etc/php/conf.d/typo3.ini -RUN echo "error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT" >> /usr/local/etc/php/conf.d/typo3.ini +RUN echo "error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE" >> /usr/local/etc/php/conf.d/typo3.ini ARG TYPO3AZUREEDGEURIVERSION ENV TYPO3AZUREEDGEURIVERSION=$TYPO3AZUREEDGEURIVERSION