From d3d7b17b72ce02de533992843f3d39d1eb62a9e6 Mon Sep 17 00:00:00 2001 From: Philipp Date: Fri, 14 Mar 2025 23:20:02 +0100 Subject: [PATCH] Add (un)zip to the CI-docker images, fixing a warning during composer --- php7.3/Dockerfile | 3 ++- php7.4/Dockerfile | 3 ++- php8.0/Dockerfile | 3 ++- php8.1/Dockerfile | 3 ++- php8.2/Dockerfile | 3 ++- php8.3/Dockerfile | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/php7.3/Dockerfile b/php7.3/Dockerfile index e3f39dd..86529fa 100644 --- a/php7.3/Dockerfile +++ b/php7.3/Dockerfile @@ -11,7 +11,8 @@ RUN set -ex; \ DEBIAN_FRONTEND=noninteractive apt-get install -q -y php7.3-gd git curl openssl \ php7.3-cli php7.3-curl php7.3-mysql wget make \ php7.3-redis php7.3-intl php7.3-memcached php7.3-memcache php7.3-json \ - php7.3-apcu php7.3-xdebug php7.3-xml php7.3-zip php7.3-dev php7.3-mbstring; \ + php7.3-apcu php7.3-xdebug php7.3-xml php7.3-zip php7.3-dev php7.3-mbstring \ + zip unzip php7.3-zip; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; diff --git a/php7.4/Dockerfile b/php7.4/Dockerfile index b262dce..112aa05 100644 --- a/php7.4/Dockerfile +++ b/php7.4/Dockerfile @@ -11,7 +11,8 @@ RUN set -ex; \ DEBIAN_FRONTEND=noninteractive apt-get install -q -y php7.4-gd git curl openssl \ php7.4-cli php7.4-curl php7.4-mysql wget make \ php7.4-redis php7.4-intl php7.4-memcached php7.4-memcache php7.4-json \ - php7.4-apcu php7.4-xdebug php7.4-xml php7.4-zip php7.4-dev php7.4-mbstring; \ + php7.4-apcu php7.4-xdebug php7.4-xml php7.4-zip php7.4-dev php7.4-mbstring \ + zip unzip php7.4-zip; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; diff --git a/php8.0/Dockerfile b/php8.0/Dockerfile index efa719c..b393cb3 100644 --- a/php8.0/Dockerfile +++ b/php8.0/Dockerfile @@ -11,7 +11,8 @@ RUN set -ex; \ DEBIAN_FRONTEND=noninteractive apt-get install -q -y php8.0-gd git curl openssl \ php8.0-cli php8.0-curl php8.0-mysql wget make \ php8.0-redis php8.0-intl php8.0-memcached php8.0-memcache \ - php8.0-apcu php8.0-xdebug php8.0-xml php8.0-zip php8.0-dev php8.0-mbstring; \ + php8.0-apcu php8.0-xdebug php8.0-xml php8.0-zip php8.0-dev php8.0-mbstring \ + zip unzip php8.0-zip; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; diff --git a/php8.1/Dockerfile b/php8.1/Dockerfile index c2f5b37..f9e03c0 100644 --- a/php8.1/Dockerfile +++ b/php8.1/Dockerfile @@ -12,7 +12,8 @@ RUN set -ex; \ php8.1-cli php8.1-curl php8.1-mysql wget make \ php8.1-redis php8.1-intl php8.1-memcached php8.1-memcache \ php8.1-apcu php8.1-xdebug php8.1-xml php8.1-zip php8.1-dev php8.1-mbstring; \ - apt-get autoremove -y; apt-get autoclean; apt-get clean; \ + apt-get autoremove -y; apt-get autoclean; apt-get clean \ + zip unzip php8.1-zip; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; RUN phpenmod curl pdo pdo_mysql xml gd zip opcache mbstring posix ctype iconv intl diff --git a/php8.2/Dockerfile b/php8.2/Dockerfile index 6a1749c..3317c43 100644 --- a/php8.2/Dockerfile +++ b/php8.2/Dockerfile @@ -11,7 +11,8 @@ RUN set -ex; \ DEBIAN_FRONTEND=noninteractive apt-get install -q -y php8.2-gd git curl openssl \ php8.2-cli php8.2-curl php8.2-mysql wget make \ php8.2-redis php8.2-intl php8.2-memcached php8.2-memcache \ - php8.2-apcu php8.2-xdebug php8.2-xml php8.2-zip php8.2-dev php8.2-mbstring; \ + php8.2-apcu php8.2-xdebug php8.2-xml php8.2-zip php8.2-dev php8.2-mbstring \ + zip unzip php8.2-zip; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*; diff --git a/php8.3/Dockerfile b/php8.3/Dockerfile index b5d6821..a4cd2d4 100644 --- a/php8.3/Dockerfile +++ b/php8.3/Dockerfile @@ -11,7 +11,8 @@ RUN set -ex; \ DEBIAN_FRONTEND=noninteractive apt-get install -q -y php8.3-gd git curl openssl \ php8.3-cli php8.3-curl php8.3-mysql wget make \ php8.3-redis php8.3-intl php8.3-memcached php8.3-memcache \ - php8.3-apcu php8.3-xdebug php8.3-xml php8.3-zip php8.3-dev php8.3-mbstring; \ + php8.3-apcu php8.3-xdebug php8.3-xml php8.3-zip php8.3-dev php8.3-mbstring \ + zip unzip php8.3-zip; \ apt-get autoremove -y; apt-get autoclean; apt-get clean; \ rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*;