chore(node): Updated node to 16.14.2

This commit is contained in:
Timothy Stewart
2022-03-19 14:16:24 -05:00
parent b2e3dcefc3
commit 6f366acf9e
5 changed files with 134 additions and 140 deletions

View File

@@ -1,4 +1,4 @@
FROM node:16.14.0-alpine AS node-build
FROM node:16.14.2-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:16.14.0-alpine
FROM node:16.14.2-alpine
WORKDIR /usr/src/app
ENV NODE_ENV production
RUN mkdir -p /node_modules