From 3bf8afa9b0f1214175d9a60c1952ed63d95e55d2 Mon Sep 17 00:00:00 2001 From: Jingsheng Wang Date: Wed, 5 Aug 2015 01:09:40 +0800 Subject: [PATCH] Update Dockerfile to install PHP zip extension Drupal uses Composer a lot; especially Drupal 8, and there are a lot of modules, requiring composer, are being back ported to Drupal 7. Composer use PHP zip extension. Otherwise, see https://github.com/docker-library/php/issues/60 --- 8/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/8/Dockerfile b/8/Dockerfile index 9069c64d..02dd403d 100644 --- a/8/Dockerfile +++ b/8/Dockerfile @@ -6,7 +6,7 @@ RUN a2enmod rewrite RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libpq-dev \ && rm -rf /var/lib/apt/lists/* \ && docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \ - && docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql + && docker-php-ext-install gd mbstring pdo pdo_mysql pdo_pgsql zip WORKDIR /var/www/html