From 292b98789d7e5a1d9435de4d263d52adb2c3b436 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Fri, 5 Jun 2020 10:11:25 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 12afa2b..8562c5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,9 @@ RUN chmod +x /usr/local/bin/entrypoint.sh && \ # Enable PHP lighttpd-enable-mod fastcgi-php && \ # Include vhost's - sed -i -e '$a\' -e 'include_shell "cat /etc/lighttpd/vhosts.d/*.conf"' /etc/lighttpd/lighttpd.conf && \ + sed -i -e '$a\' -e 'include_shell "cat /etc/lighttpd/vhosts.d/*.conf"' /etc/lighttpd/lighttpd.conf && \ + # Enable browscap + sed -i -e 's/;browscap /browscap /' /etc/php/cgi/php.ini && \ mkdir -p /run/lighttpd/ && chown www-data /run/lighttpd/ && \ apt-get remove -y \ libterm-readline-gnu-perl \