You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains sources files needed to build the Node.js runtimes for Apache OpenWhisk. The build system will produce a series of docker images for each runtime version. These images are used in the platform to execute Node.js actions.
26
26
27
27
The following Node.js runtime versions (with kind & image labels) are generated by the build system:
These images can be used to execute Node.js actions on any deployment of Apache OpenWhisk, even those without those images defined the in runtime manifest, using the `--docker` action parameter.
61
62
@@ -84,9 +85,10 @@ The `core/nodejsActionBase` folder contains the Node.js app server used to imple
84
85
```
85
86
./gradlew core:nodejs14Action:distDocker
86
87
./gradlew core:nodejs16Action:distDocker
88
+
./gradlew core:nodejs18Action:distDocker
87
89
```
88
90
89
-
This will return the following runtime images with the following names: `action-nodejs-v14`and `action-nodejs-v16`.
91
+
This will return the following runtime images with the following names: `action-nodejs-v14`, `action-nodejs-v16`, and `action-nodejs-v18`.
90
92
91
93
### Testing
92
94
@@ -104,11 +106,11 @@ This will return the following runtime images with the following names: `action-
An update about the details of verifying a standalone container can be found [here](https://github.com/apache/openwhisk-runtime-nodejs/tree/master/docs/users)
0 commit comments