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

[openwhisk-runtime-nodejs] branch master updated: Install zip (#216)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 339bc7b  Install zip (#216)
339bc7b is described below

commit 339bc7b286c9d095e118136d8cecb5869e98cf8d
Author: Luke-Roy-IBM <83...@users.noreply.github.com>
AuthorDate: Mon Mar 28 12:06:18 2022 +0200

    Install zip (#216)
    
    This is for convenience so customers can package their actions inside of the runtime.
---
 core/nodejs16Action/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/nodejs16Action/Dockerfile b/core/nodejs16Action/Dockerfile
index 7e5db35..1d6298e 100644
--- a/core/nodejs16Action/Dockerfile
+++ b/core/nodejs16Action/Dockerfile
@@ -22,6 +22,7 @@ FROM node:16.14-bullseye
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
+    zip \
     unzip \
     && rm -rf /var/lib/apt/lists/*