From 00645e123f5a14c117cda86a7e6b9a4b0c46e8be Mon Sep 17 00:00:00 2001 From: Ludovic Cartier Date: Mon, 6 Jan 2025 17:41:13 +0100 Subject: [PATCH] add zip / unzip --- Dockerfile | 3 +++ README.md | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 76147f6..37ac43e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,9 @@ RUN dpkg -i /tmp/debsuryorg-archive-keyring.deb RUN sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' RUN apt update +# install zip / unzip +RUN apt install -yqq zip unzip + # install PHP 8.3 RUN apt install -yqq php8.3-cli php8.3-common php8.3-curl php8.3-imagick php8.3-intl php8.3-mbstring php8.3-opcache php8.3-readline php8.3-xml php8.3-zip diff --git a/README.md b/README.md index 9fbf6b5..660ae6e 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ Final docker image is based on Debian stable slim, with PHP Sury apt repo, and t - php8.3-zip - composer - nodejs 18 + - zip + - unzip Schedule --------