chore(nodjs): Upgraded node to 16.13.0

This commit is contained in:
Timothy Stewart 2021-10-27 21:13:03 -05:00
parent 5b42bcacd6
commit e0af97e22c
4 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [v14.17.4]
node-version: [v16.13.0]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [v14.17.4]
node-version: [v16.13.0]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}

2
.nvmrc
View File

@ -1 +1 @@
v14.17.4
v16.13.0

View File

@ -1,4 +1,4 @@
FROM node:14.17.4-alpine AS node-build
FROM node:16.13.0-alpine AS node-build
WORKDIR /usr/src/app
COPY package.json ./
COPY yarn.lock ./
@ -8,7 +8,7 @@ RUN yarn install --frozen-lockfile --check-files --network-timeout 600000
RUN yarn build --noninteractive
RUN yarn install --frozen-lockfile --check-files --production --modules-folder node_modules_prod --network-timeout 600000
FROM node:14.17.4-alpine
FROM node:16.13.0-alpine
WORKDIR /usr/src/app
ENV NODE_ENV production
RUN mkdir -p /node_modules