fix: update node version to latest lts

This commit is contained in:
Karol Sójko 2022-06-22 10:21:23 +02:00
parent 8c5c52770b
commit 2a1b9a6679
No known key found for this signature in database
GPG key ID: A50543BF560BDEB0
2 changed files with 3 additions and 3 deletions

2
.nvmrc
View file

@ -1 +1 @@
16.11.1
16.15.1

View file

@ -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