Node v14 as repo default

This commit is contained in:
Aarni Halinen
2021-01-15 22:32:24 +02:00
parent 261334006b
commit e56fdb098a
5 changed files with 13 additions and 11 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:12-alpine as builder
FROM node:14-alpine as builder
COPY package.json package-lock.json ./
RUN npm install
@@ -6,7 +6,7 @@ RUN npm install
COPY . ./
RUN npm run build
FROM node:12-alpine as server
FROM node:14-alpine as server
WORKDIR /www
COPY package.json package-lock.json next.config.js ./
RUN npm ci --only=production