openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit f9f360e2780158be3d66825472590e5eda46a224
parent 73f712e583d767031be5ba24883c692ab7600a39
Author: Jan Dankert <develop@jandankert.de>
Date:   Thu, 18 Nov 2021 00:18:18 +0100

Fix: Needing php-dom and php-xml for the template compiler (only for development)

Diffstat:
MDockerfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="Jan Dankert" # Install packages RUN apk --update --no-cache add \ apache2 apache2-http2 curl \ - php7 php7-apache2 php7-session php7-pdo php7-pdo_mysql php7-pdo_pgsql php7-json php7-ftp php7-iconv php7-openssl php7-mbstring + php7 php7-apache2 php7-session php7-pdo php7-pdo_mysql php7-pdo_pgsql php7-json php7-ftp php7-iconv php7-openssl php7-mbstring php7-dom php7-xml ENV DB_TYPE="mysql" \ DB_HOST="localhost" \