@@ -26,7 +26,6 @@ This repository contains sources files needed to build the Node.js runtimes for
26
26
27
27
The following Node.js runtime versions (with kind & image labels) are generated by the build system:
28
28
29
- - Node.js 14.19 (` nodejs:14 ` & ` openwhisk/action-nodejs-v14 ` )
30
29
- Node.js 16 (` nodejs:16 ` & ` openwhisk/action-nodejs-v16 ` )
31
30
- Node.js 18 (` nodejs:18 ` & ` openwhisk/action-nodejs-v18 ` )
32
31
@@ -38,12 +37,6 @@ This README documents the build, customisation and testing of these runtime imag
38
37
39
38
If the deployment of Apache OpenWhisk includes these images in the runtime manifest, use the ` --kind ` parameter to select the Node.js runtime version.
40
39
41
- ### Node.js v14
42
-
43
- ```
44
- wsk action update myAction myAction.js --kind nodejs:14
45
- ```
46
-
47
40
### Node.js v16
48
41
49
42
```
@@ -54,7 +47,6 @@ wsk action update myAction myAction.js --kind nodejs:16
54
47
55
48
All the runtime images are published by the project to Docker Hub @ [ https://hub.docker.com/u/openwhisk ] ( https://hub.docker.com/u/openwhisk )
56
49
57
- - [ https://hub.docker.com/r/openwhisk/action-nodejs-v14 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v14 )
58
50
- [ https://hub.docker.com/r/openwhisk/action-nodejs-v16 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v16 )
59
51
- [ https://hub.docker.com/r/openwhisk/action-nodejs-v18 ] ( https://hub.docker.com/r/openwhisk/action-nodejs-v18 )
60
52
@@ -83,12 +75,11 @@ The `core/nodejsActionBase` folder contains the Node.js app server used to imple
83
75
- Run the ` distDocker ` command to generate local Docker images for the different runtime versions.
84
76
85
77
```
86
- ./gradlew core:nodejs14Action:distDocker
87
78
./gradlew core:nodejs16Action:distDocker
88
79
./gradlew core:nodejs18Action:distDocker
89
80
```
90
81
91
- This will return the following runtime images with the following names: ` action-nodejs-v14 ` , ` action-nodejs- v16` , and ` action-nodejs-v18 ` .
82
+ This will return the following runtime images with the following names: ` action-nodejs-v16 ` , and ` action-nodejs-v18 ` .
92
83
93
84
### Testing
94
85
@@ -104,7 +95,6 @@ This will return the following runtime images with the following names: `action-
104
95
- Build the custom Docker images used in local testing.
105
96
106
97
```
107
- ./gradlew tests:dat:docker:nodejs14docker:distDocker
108
98
./gradlew tests:dat:docker:nodejs16docker:distDocker
109
99
./gradlew tests:dat:docker:nodejs18docker:distDocker
110
100
```
0 commit comments