feat: add pcntl
All checks were successful
web/phpapache/pipeline/head This commit looks good

This commit is contained in:
Julien Cabillot 2025-03-12 12:47:54 -04:00
parent b11ff93333
commit 6baa97c8e6

View File

@ -29,7 +29,9 @@ RUN export DEBIAN_FRONTEND="noninteractive" && \
s#^(\s*CustomLog)\s+\S+#\1 /proc/self/fd/1#g; \
s#^(\s*ErrorLog)\s+\S+#\1 /proc/self/fd/2#g; \
' "/etc/apache2/sites-enabled/000-default.conf" && \
echo "error_reporting=E_ALL\nerror_log=/proc/self/fd/2\nlog_errors=On\nexpose_php=Off" > "/usr/local/etc/php/conf.d/override.ini"
echo "error_reporting=E_ALL\nerror_log=/proc/self/fd/2\nlog_errors=On\nexpose_php=Off" > "/usr/local/etc/php/conf.d/override.ini" && \
docker-php-ext-configure pcntl --enable-pcntl && \
docker-php-ext-install pcntl
ENTRYPOINT ["/usr/bin/tini", "--"]