You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ak...@apache.org on 2022/03/28 07:21:16 UTC

[openwhisk-runtime-php] branch master updated: Install Zip (#115)

This is an automated email from the ASF dual-hosted git repository.

akrabat pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-php.git


The following commit(s) were added to refs/heads/master by this push:
     new 456ced8  Install Zip (#115)
456ced8 is described below

commit 456ced8d6d64a05478e6976558ddbf420e43f18a
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Mon Mar 28 09:21:12 2022 +0200

    Install Zip (#115)
    
    This is for convenience so customers can package their actions inside of the runtime.
---
 core/php7.4Action/Dockerfile | 1 +
 core/php8.0Action/Dockerfile | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/php7.4Action/Dockerfile b/core/php7.4Action/Dockerfile
index 98293b8..80be865 100644
--- a/core/php7.4Action/Dockerfile
+++ b/core/php7.4Action/Dockerfile
@@ -53,6 +53,7 @@ RUN \
       libxml2-dev \
       libzip-dev \
       postgresql-server-dev-11 \
+      zip \
       unzip \
       zlib1g-dev \
     # Cleanup apt data, we do not need them later on.
diff --git a/core/php8.0Action/Dockerfile b/core/php8.0Action/Dockerfile
index 01c02f9..2c927ef 100644
--- a/core/php8.0Action/Dockerfile
+++ b/core/php8.0Action/Dockerfile
@@ -50,7 +50,7 @@ RUN apt-get -y update \
       libxml2 \
       libzip4 \
       libpq5 \
-      \
+      zip \
       libfreetype6-dev \
       libicu-dev \
       libjpeg-dev \