From fd0e00e1acbf5d1e871535426d4d3e1a33b994ea Mon Sep 17 00:00:00 2001 From: Chase Bolt Date: Tue, 12 Jul 2022 17:28:11 -0700 Subject: [PATCH] bump to node version 16 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ce918c..95d149e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14 as builder +FROM node:16 as builder WORKDIR /calcom ARG NEXT_PUBLIC_WEBAPP_URL=http://localhost:3000 @@ -25,7 +25,7 @@ RUN yarn install --frozen-lockfile RUN yarn build -FROM node:14 as runner +FROM node:16 as runner WORKDIR /calcom ENV NODE_ENV production