@@ -26,7 +26,6 @@ This repository contains sources files needed to build the Node.js runtimes for
2626
2727The following Node.js runtime versions (with kind & image labels) are generated by the build system:
2828
29- - Node.js 10.24.1 (` nodejs:10 ` & ` openwhisk/action-nodejs-v10 ` )
3029- Node.js 12.22.1 (` nodejs:12 ` & ` openwhisk/action-nodejs-v12 ` )
3130- Node.js 14.16.1 (` nodejs:14 ` & ` openwhisk/action-nodejs-v14 ` )
3231
@@ -38,12 +37,6 @@ This README documents the build, customisation and testing of these runtime imag
3837
3938If the deployment of Apache OpenWhisk includes these images in the runtime manifest, use the ` --kind ` parameter to select the Node.js runtime version.
4039
41- ### Node.js v10
42-
43- ```
44- wsk action update myAction myAction.js --kind nodejs:10
45- ```
46-
4740### Node.js v12
4841
4942```
@@ -60,7 +53,6 @@ wsk action update myAction myAction.js --kind nodejs:14
6053
6154All the runtime images are published by the project to Docker Hub @ [ https://hub.docker.com/u/openwhisk ] ( https://hub.docker.com/u/openwhisk )
6255
63- - [ https://hub.docker.com/r/openwhisk/action-nodejs-v10 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v10 )
6456- [ https://hub.docker.com/r/openwhisk/action-nodejs-v12 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v12 )
6557- [ https://hub.docker.com/r/openwhisk/action-nodejs-v14 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v14 )
6658
@@ -89,12 +81,11 @@ The `core/nodejsActionBase` folder contains the Node.js app server used to imple
8981- Run the ` distDocker ` command to generate local Docker images for the different runtime versions.
9082
9183```
92- ./gradlew core:nodejs10Action:distDocker
9384./gradlew core:nodejs12Action:distDocker
9485./gradlew core:nodejs14Action:distDocker
9586```
9687
97- This will return the following runtime images with the following names: ` action-nodejs-v10 ` , ` action-nodejs- v12` and ` action-nodejs-v14 ` .
88+ This will return the following runtime images with the following names: ` action-nodejs-v12 ` and ` action-nodejs-v14 ` .
9889
9990### Testing
10091
@@ -110,7 +101,6 @@ This will return the following runtime images with the following names: `action-
110101- Build the custom Docker images used in local testing.
111102
112103```
113- ./gradlew tests:dat:docker:nodejs10docker:distDocker
114104./gradlew tests:dat:docker:nodejs12docker:distDocker
115105./gradlew tests:dat:docker:nodejs14docker:distDocker
116106```
0 commit comments