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-ruby.git
The following commit(s) were added to refs/heads/master by this push:
new 0db1cc8 Install Zip (#68)
0db1cc8 is described below
commit 0db1cc800ed7fdba06bb6b9d037fc699d2c01c65
Author: Luke-Roy-IBM <[email protected]>
AuthorDate: Mon Mar 28 13:52:33 2022 +0200
Install Zip (#68)
This is for convenience so customers can package their actions inside of
the runtime.
---
core/ruby2.5Action/Dockerfile | 1 +
core/ruby2.6ActionLoop/Dockerfile | 1 +
2 files changed, 2 insertions(+)
diff --git a/core/ruby2.5Action/Dockerfile b/core/ruby2.5Action/Dockerfile
index 0cfff5b..d9b249d 100644
--- a/core/ruby2.5Action/Dockerfile
+++ b/core/ruby2.5Action/Dockerfile
@@ -33,6 +33,7 @@ RUN \
apt-get -y update \
# Upgrade installed packages to get latest security fixes if the base
image does not contain them already.
&& apt-get upgrade -y --no-install-recommends \
+ && apt-get install -y zip \
# Cleanup apt data, we do not need them later on.
&& rm -rf /var/lib/apt/lists/* \
# create src directory to store action files
diff --git a/core/ruby2.6ActionLoop/Dockerfile
b/core/ruby2.6ActionLoop/Dockerfile
index 4e30ade..42b01a5 100644
--- a/core/ruby2.6ActionLoop/Dockerfile
+++ b/core/ruby2.6ActionLoop/Dockerfile
@@ -42,6 +42,7 @@ RUN \
apt-get -y update \
# Upgrade installed packages to get latest security fixes if the base
image does not contain them already.
&& apt-get upgrade -y --no-install-recommends \
+ && apt-get install -y zip \
# Cleanup apt data, we do not need them later on.
&& rm -rf /var/lib/apt/lists/* \
# Create required directories