Skip to content

Commit 1806cad

Browse files
CR-8276 vulns fix (#85)
* change base image to node:16.13.1-alpine3.14 * bump
1 parent 45317f5 commit 1806cad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v10.24.0
1+
v16.13.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:10.24.0-alpine3.11
1+
FROM node:16.13.1-alpine3.14
22

33
WORKDIR /root/cf-runtime
44

@@ -11,7 +11,7 @@ COPY package.json ./
1111
COPY yarn.lock ./
1212

1313
# install cf-runtime required binaries
14-
RUN apk add --no-cache --virtual deps python make g++ && \
14+
RUN apk add --no-cache --virtual deps python3 make g++ && \
1515
yarn install --frozen-lockfile --production && \
1616
yarn cache clean && \
1717
apk del deps && \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"sinon-chai": "^3.3.0"
4646
},
4747
"engines": {
48-
"node": "10.24.0"
48+
"node": "16.13.1"
4949
},
5050
"scripts": {
5151
"lint": "eslint '*/**/*.js'",

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 1.6.0
1+
version: 1.6.1

0 commit comments

Comments
 (0)