From fc0a890feed89006cc0db9a566d49b00ebeb6acd Mon Sep 17 00:00:00 2001 From: anibalsanchez Date: Thu, 19 Aug 2021 19:44:21 +0200 Subject: [PATCH] build(Dockerfile): Add unzip util --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 81f1069..843f376 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN curl -sSfL -o /php-prefixer-cli.phar 'https://github.com/PHP-Prefixer/php-pr && curl -sSfL -o /usr/local/bin/composer 'https://getcomposer.org/composer.phar' \ && chmod +x /usr/local/bin/composer \ && apt-get update \ - && apt-get install -y --no-install-recommends git rsync libzip-dev zip \ + && apt-get install -y --no-install-recommends git rsync libzip-dev zip unzip \ && docker-php-ext-configure zip \ && docker-php-ext-install zip \ && rm -rf /var/lib/apt/lists/*