File tree 6 files changed +12
-12
lines changed
6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
- FROM node:14.8 .0-buster-slim@sha256:c253a1a9569e95414f30c6094bdb7f7561c17ad93447d2747405e367066a841a
1
+ FROM node:14.11 .0-buster-slim@sha256:c253a1a9569e95414f30c6094bdb7f7561c17ad93447d2747405e367066a841a
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 - ** 14.8 .0**
10
- * aws-sdk - ** 2.734 .0**
9
+ * Node.js - ** 14.11 .0**
10
+ * aws-sdk - ** 2.756 .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-14-runtime \
43
- --description " nodejs-14.8 .0 aws-cli-2.734 .0" \
43
+ --description " nodejs-14.11 .0 aws-cli-2.756 .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-14-runtime:1" ,
53
- "Description" : " nodejs-14.8 .0 aws-cli-2.734 .0" ,
53
+ "Description" : " nodejs-14.11 .0 aws-cli-2.756 .0" ,
54
54
"CreatedDate" : " 2018-12-02T22:32:00.572+0000" ,
55
55
"LayerArn" : " arn:aws:lambda:us-east-2:356111732087:layer:node-14-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=14.8 .0
6
- export SHA256=c7761fe5d56d045d1540b1f0bc8a20d7edf03e6fd695ee5fbffc1dd9416ccc75
5
+ export NODE_VERSION=14.11 .0
6
+ export SHA256=c0dfb8e45aefefc65410dbe3e9a05e346b952b2a19a965f5bea3e77b74fc73d8
7
7
8
8
DIR=" $( cd " $( dirname " $0 " ) " && pwd ) "
9
9
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ for R in $REGIONS ; do
41
41
lambda publish-layer-version \
42
42
--region " ${R} " \
43
43
--layer-name " ${LAYER_NAME} " \
44
- --description " nodejs-14.8 .0 aws-cli-2.734 .0" \
44
+ --description " nodejs-14.11 .0 aws-cli-2.756 .0" \
45
45
--compatible-runtimes provided \
46
46
--license-info Apache-2.0 \
47
47
--zip-file fileb://stage/layer.zip
Original file line number Diff line number Diff line change 13
13
"express" : " ^4.17.1"
14
14
},
15
15
"dependencies" : {
16
- "aws-sdk" : " ^2.734 .0"
16
+ "aws-sdk" : " ^2.756 .0"
17
17
}
18
18
}
You can’t perform that action at this time.
0 commit comments