From b27680aba6b4f8fe03d9bbfdd448cb409dce647f Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 18 Jun 2025 16:57:23 +0200 Subject: [PATCH] feat: add unzip to avoid composer notice --- Dockerfile.php8.0 | 2 +- Dockerfile.php8.1 | 2 +- Dockerfile.php8.2 | 2 +- Dockerfile.php8.3 | 2 +- Dockerfile.php8.4 | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile.php8.0 b/Dockerfile.php8.0 index a0a9345..541ea4d 100644 --- a/Dockerfile.php8.0 +++ b/Dockerfile.php8.0 @@ -1,7 +1,7 @@ FROM debian:bullseye-slim RUN apt-get update \ - && apt-get install -y apt-transport-https ca-certificates wget \ + && apt-get install -y apt-transport-https ca-certificates wget unzip \ && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ && sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \ && apt-get update \ diff --git a/Dockerfile.php8.1 b/Dockerfile.php8.1 index 4e7b724..a37885a 100644 --- a/Dockerfile.php8.1 +++ b/Dockerfile.php8.1 @@ -1,7 +1,7 @@ FROM debian:bullseye-slim RUN apt-get update \ - && apt-get install -y apt-transport-https ca-certificates wget \ + && apt-get install -y apt-transport-https ca-certificates wget unzip \ && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ && sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \ && apt-get update \ diff --git a/Dockerfile.php8.2 b/Dockerfile.php8.2 index 6f8d393..fa9d415 100644 --- a/Dockerfile.php8.2 +++ b/Dockerfile.php8.2 @@ -1,7 +1,7 @@ FROM debian:bullseye-slim RUN apt-get update \ - && apt-get install -y apt-transport-https ca-certificates wget \ + && apt-get install -y apt-transport-https ca-certificates wget unzip \ && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ && sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \ && apt-get update \ diff --git a/Dockerfile.php8.3 b/Dockerfile.php8.3 index 19792b1..256d22e 100644 --- a/Dockerfile.php8.3 +++ b/Dockerfile.php8.3 @@ -1,7 +1,7 @@ FROM debian:bullseye-slim RUN apt-get update \ - && apt-get install -y apt-transport-https ca-certificates wget \ + && apt-get install -y apt-transport-https ca-certificates wget unzip \ && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ && sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \ && apt-get update \ diff --git a/Dockerfile.php8.4 b/Dockerfile.php8.4 index ab4fbb6..4e2453f 100644 --- a/Dockerfile.php8.4 +++ b/Dockerfile.php8.4 @@ -1,7 +1,7 @@ FROM debian:bullseye-slim RUN apt-get update \ - && apt-get install -y apt-transport-https ca-certificates wget \ + && apt-get install -y apt-transport-https ca-certificates wget unzip \ && wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ && sh -c 'echo "deb https://packages.sury.org/php/ bullseye main" > /etc/apt/sources.list.d/php.list' \ && apt-get update \