From 963dae52113195c3aac6ded77a93038f8cfb2f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Mon, 24 Feb 2020 22:07:00 +0100 Subject: [PATCH] Fix error Please reinstall the libzip distribution --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a3a738f..f56fecb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV PGHOST=db \ # Install git, Apache2 + PHP + PostgreSQL webserver, sendmail, wkhtmltopdf & others utilities. RUN apt-get update && \ apt-get upgrade -y && \ - apt-get install postgresql-client wkhtmltopdf libpq-dev libpng-dev libxml2-dev sendmail -y; + apt-get install postgresql-client wkhtmltopdf libpq-dev libpng-dev libxml2-dev libzip-dev sendmail -y; # Install PHP extensions. RUN docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr; \