From 2a7ee4260b6acc932f7627fdc113a95ee13bac57 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 10 Aug 2023 09:48:11 +0000 Subject: [PATCH] chore(deps): update node.js to v20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23c44a552..5b08da65f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Rebuild the source code only when needed -FROM node:18-alpine AS builder +FROM node:20-alpine AS builder RUN apk add --no-cache libc6-compat git RUN npm i -g pnpm @@ -13,7 +13,7 @@ RUN npm run build # RUN npm run build # Production image, copy all the files and run next -FROM node:18-alpine AS runner +FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV production