From 0144bb5974f5e01e3bb733bcc6b2ff8ce9c1d02b Mon Sep 17 00:00:00 2001 From: Dario Ernst Date: Mon, 24 Jun 2019 19:18:18 +0000 Subject: [PATCH] Add missing libzip dependency for new php modules in roundcube --- webmails/roundcube/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webmails/roundcube/Dockerfile b/webmails/roundcube/Dockerfile index 183826ec..e2bd27e5 100644 --- a/webmails/roundcube/Dockerfile +++ b/webmails/roundcube/Dockerfile @@ -8,7 +8,8 @@ RUN apt-get update && apt-get install -y \ ENV ROUNDCUBE_URL https://github.com/roundcube/roundcubemail/releases/download/1.3.9/roundcubemail-1.3.9-complete.tar.gz RUN apt-get update && apt-get install -y \ - zlib1g-dev python3-jinja2 \ + zlib1g-dev libzip4 libzip-dev \ + python3-jinja2 \ && docker-php-ext-install zip \ && echo date.timezone=UTC > /usr/local/etc/php/conf.d/timezone.ini \ && rm -rf /var/www/html/ \