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

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

commit 56f699a2254f7d326349c33f67b83dc60c49ad70
Author: David Grove <gro...@us.ibm.com>
AuthorDate: Fri Apr 28 10:47:41 2023 -0400

    switch base OS from Debian stretch to bullseye
    
    Security updates for stetch are no longer available
---
 core/nodejsActionBase/Dockerfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/nodejsActionBase/Dockerfile b/core/nodejsActionBase/Dockerfile
index a92e521..777d968 100644
--- a/core/nodejsActionBase/Dockerfile
+++ b/core/nodejsActionBase/Dockerfile
@@ -15,13 +15,14 @@
 # limitations under the License.
 #
 
-FROM node:lts-stretch
+FROM node:lts-bullseye
 
 # Initial update and some basics.
 #
 RUN apt-get update && apt-get install -y \
     imagemagick \
     graphicsmagick \
+    zip \
     unzip \
     && rm -rf /var/lib/apt/lists/*
 

Reply via email to