Browse Source

fix: update node version to latest lts

Karol Sójko 3 years ago
parent
commit
2a1b9a6679
2 changed files with 3 additions and 3 deletions
  1. 1 1
      .nvmrc
  2. 2 2
      packages/scheduler/Dockerfile

+ 1 - 1
.nvmrc

@@ -1 +1 @@
-16.11.1
+16.15.1

+ 2 - 2
packages/scheduler/Dockerfile

@@ -1,4 +1,4 @@
-FROM node:16.13.1-alpine AS builder
+FROM node:16.15.1-alpine AS builder
 
 # Install dependencies for building native libraries
 RUN apk add --update git openssh-client python3 alpine-sdk
@@ -10,7 +10,7 @@ COPY manifests ./
 
 RUN yarn install --immutable
 
-FROM node:16.13.1-alpine
+FROM node:16.15.1-alpine
 
 WORKDIR /workspace