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 59dd01a Update Nodejs 16 base image (#224)
59dd01a is described below
commit 59dd01a3dd1d54be50b69cccc6f0c4301c134a5c
Author: Luke-Roy-IBM <[email protected]>
AuthorDate: Fri Sep 2 10:31:58 2022 +0200
Update Nodejs 16 base image (#224)
Setting Nodejs 16 image to `node:16-bullseye` to get latest vulnerability
fixes
---
core/nodejs16Action/CHANGELOG.md | 3 +++
core/nodejs16Action/Dockerfile | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/core/nodejs16Action/CHANGELOG.md b/core/nodejs16Action/CHANGELOG.md
index 20d81bc..675aea3 100644
--- a/core/nodejs16Action/CHANGELOG.md
+++ b/core/nodejs16Action/CHANGELOG.md
@@ -19,6 +19,9 @@
# NodeJS 16 OpenWhisk Runtime Container
+# Next release
+ - use node:16-bullseye as base image to automatically get vulnerability fixes
+
# Apache 1.20
- Initial release with support for Node.js v1.16
diff --git a/core/nodejs16Action/Dockerfile b/core/nodejs16Action/Dockerfile
index 60195d6..3197263 100644
--- a/core/nodejs16Action/Dockerfile
+++ b/core/nodejs16Action/Dockerfile
@@ -15,7 +15,7 @@
# limitations under the License.
#
-FROM node:16.15-bullseye
+FROM node:16-bullseye
# Initial update and some basics.
#