From 7c9bd84f008874d26652ed8ad3d619ac3f5f6d37 Mon Sep 17 00:00:00 2001 From: Birkhoff Lee Date: Sat, 14 Dec 2019 15:43:01 +0000 Subject: [PATCH] Docker: fix update functionality Added php zip extension --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3fa5a83..46654b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,8 @@ FROM php:7.3.12-fpm-alpine # Use the default production configuration RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" -RUN apk add --no-cache libpng-dev libxml2-dev oniguruma-dev && \ - docker-php-ext-install bcmath ctype json gd mbstring pdo pdo_mysql tokenizer xml +RUN apk add --no-cache libpng-dev libxml2-dev oniguruma-dev libzip-dev && \ + docker-php-ext-install bcmath ctype json gd mbstring pdo pdo_mysql tokenizer xml zip # Set container's working dir WORKDIR /app