chore: Update Node.js version (#2849)

This commit is contained in:
Zero King
2021-12-11 17:34:57 +00:00
committed by GitHub
parent 7aa4709e69
commit ff662acfe0
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.2
ARG APP_PATH=/opt/outline
FROM node:14-alpine AS deps-common
FROM node:16-alpine AS deps-common
ARG APP_PATH
WORKDIR $APP_PATH
@@ -17,7 +17,7 @@ RUN yarn install --production=true --frozen-lockfile && \
yarn cache clean
# ---
FROM node:14-alpine AS builder
FROM node:16-alpine AS builder
ARG APP_PATH
WORKDIR $APP_PATH
@@ -28,7 +28,7 @@ ARG CDN_URL
RUN yarn build
# ---
FROM node:14-alpine AS runner
FROM node:16-alpine AS runner
ARG APP_PATH
WORKDIR $APP_PATH