From 556a5897d1aa33a3c83a55f227db63709b12521d Mon Sep 17 00:00:00 2001 From: Erriez Date: Thu, 12 Aug 2021 21:10:06 +0200 Subject: [PATCH] Install php7-pdo and php7-pdo_sqlite for contacts --- webmails/rainloop/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webmails/rainloop/Dockerfile b/webmails/rainloop/Dockerfile index e6c3d63c..77b7a4a2 100644 --- a/webmails/rainloop/Dockerfile +++ b/webmails/rainloop/Dockerfile @@ -27,7 +27,7 @@ RUN apk add --no-cache \ # php7-pdo_sqlite Access to SQLite 3 databases RUN apk add --no-cache \ nginx \ - php7 php7-fpm php7-curl php7-iconv php7-json php7-xml php7-dom php7-openssl \ + php7 php7-fpm php7-curl php7-iconv php7-json php7-xml php7-dom php7-openssl php7-pdo php7-pdo_sqlite \ && rm /etc/nginx/http.d/default.conf \ && rm /etc/php7/php-fpm.d/www.conf \ && mkdir -p /run/nginx \