Skip to content

Commit

Permalink
CR-8276 vulns fix (#85)
Browse files Browse the repository at this point in the history
* change base image to node:16.13.1-alpine3.14

* bump
  • Loading branch information
rotem-codefresh authored Jan 2, 2022
1 parent 45317f5 commit 1806cad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.24.0
v16.13.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.24.0-alpine3.11
FROM node:16.13.1-alpine3.14

WORKDIR /root/cf-runtime

Expand All @@ -11,7 +11,7 @@ COPY package.json ./
COPY yarn.lock ./

# install cf-runtime required binaries
RUN apk add --no-cache --virtual deps python make g++ && \
RUN apk add --no-cache --virtual deps python3 make g++ && \
yarn install --frozen-lockfile --production && \
yarn cache clean && \
apk del deps && \
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"sinon-chai": "^3.3.0"
},
"engines": {
"node": "10.24.0"
"node": "16.13.1"
},
"scripts": {
"lint": "eslint '*/**/*.js'",
Expand Down
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 1.6.0
version: 1.6.1

0 comments on commit 1806cad

Please sign in to comment.