File tree 6 files changed +20
-20
lines changed
6 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1
- FROM node:15.9 .0-buster-slim@sha256:df7835508cc172c02e34b3791ac7a1fd5ce4d0f88ca8915154a966fd4fcae0a5
1
+ FROM node:15.12 .0-buster-slim@sha256:df7835508cc172c02e34b3791ac7a1fd5ce4d0f88ca8915154a966fd4fcae0a5
2
2
3
3
RUN apt-get update && apt-get install -y p7zip-full curl xz-utils && apt-get clean all
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ It's easy to use this project and build Node.js runtime that will target any ver
6
6
7
7
## Current versions
8
8
9
- * Node.js - ** 15.9 .0**
10
- * aws-sdk - ** 2.848 .0**
9
+ * Node.js - ** 15.12 .0**
10
+ * aws-sdk - ** 2.870 .0**
11
11
12
12
## Goals
13
13
@@ -40,7 +40,7 @@ Deploy the runtime layer using the following command:
40
40
``` bash
41
41
aws lambda publish-layer-version \
42
42
--layer-name node-15-runtime \
43
- --description " nodejs-15.9 .0 aws-cli-2.848 .0" \
43
+ --description " nodejs-15.12 .0 aws-cli-2.870 .0" \
44
44
--compatible-runtimes provided \
45
45
--license-info Apache-2.0 \
46
46
--zip-file fileb://stage/layer.zip
@@ -50,7 +50,7 @@ The output will look like this:
50
50
``` json
51
51
{
52
52
"LayerVersionArn" : " arn:aws:lambda:us-east-2:356111732087:layer:node-15-runtime:1" ,
53
- "Description" : " nodejs-15.9 .0 aws-cli-2.848 .0" ,
53
+ "Description" : " nodejs-15.12 .0 aws-cli-2.870 .0" ,
54
54
"CreatedDate" : " 2018-12-02T22:32:00.572+0000" ,
55
55
"LayerArn" : " arn:aws:lambda:us-east-2:356111732087:layer:node-15-runtime" ,
56
56
"Content" : {
Original file line number Diff line number Diff line change 2
2
3
3
set -ex
4
4
5
- export NODE_VERSION=15.9 .0
6
- export SHA256=c57b1f33a1ee5957981df553f6a0e0cac302528f260140eda10fe5fdd24e1cbd
5
+ export NODE_VERSION=15.12 .0
6
+ export SHA256=3892b4058cf12823c6cf39e4a3e9ce6da3f908cbfd211ddfc0a9df73eecd8bdc
7
7
8
8
DIR=" $( cd " $( dirname " $0 " ) " && pwd ) "
9
9
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ for R in $REGIONS ; do
42
42
lambda publish-layer-version \
43
43
--region " ${R} " \
44
44
--layer-name " ${LAYER_NAME} " \
45
- --description " nodejs-15.9 .0 aws-cli-2.848 .0" \
45
+ --description " nodejs-15.12 .0 aws-cli-2.870 .0" \
46
46
--compatible-runtimes provided \
47
47
--license-info Apache-2.0 \
48
48
--zip-file fileb://stage/layer.zip
Original file line number Diff line number Diff line change 12
12
"devDependencies" : {
13
13
"body-parser" : " ^1.19.0" ,
14
14
"express" : " ^4.17.1" ,
15
- "@types/node" : " ^14.14.31 " ,
15
+ "@types/node" : " ^14.14.35 " ,
16
16
"@types/express" : " ^4.17.11" ,
17
17
"ts-node" : " ^9.1.1" ,
18
- "typescript" : " ^4.1.5 "
18
+ "typescript" : " ^4.2.3 "
19
19
},
20
20
"dependencies" : {
21
- "aws-sdk" : " ^2.848 .0"
21
+ "aws-sdk" : " ^2.870 .0"
22
22
}
23
23
}
You can’t perform that action at this time.
0 commit comments