Update buster image to PHP 7.3

This commit is contained in:
Jan Dittberner 2018-12-20 07:54:59 +01:00
parent 5b73173912
commit c3ae577c1b
2 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ RUN apt-get update \
php-mbstring \
php-net-smtp \
php-net-socket \
php7.2-opcache \
php-opcache \
php-pspell \
php-sqlite3 \
psmisc \
@ -28,4 +28,4 @@ RUN apt-get update \
ADD --chown=root:root nsswitch.conf libnss-ldap.conf /etc/
RUN rm -f /etc/php/7.2/fpm/pool.d/www.conf
RUN rm -f /etc/php/7.3/fpm/pool.d/www.conf

View file

@ -4,8 +4,8 @@ set -e
sed "s/@user@/${FPM_USER}/g; s/@variant@/${FPM_VARIANT}/g" \
< /usr/local/etc/fpm-pool.conf.tmpl \
> "/etc/php/7.2/fpm/pool.d/${FPM_USER}.conf"
> "/etc/php/7.3/fpm/pool.d/${FPM_USER}.conf"
/etc/init.d/nullmailer start
mkdir -p /run/php
/usr/sbin/php-fpm7.2 --nodaemonize
/usr/sbin/php-fpm7.3 --nodaemonize