From 28379d08b4050330389aa7cb9d8305ff12642bd7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 May 2023 15:12:00 +0000 Subject: [PATCH] Update Node.js to v20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b9908e..3c30923 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by the MIT # license that can be found in the LICENSE file. -FROM node:18-alpine as builder +FROM node:20-alpine as builder #RUN wget -O- https://gobinaries.com/tj/node-prune | sh @@ -16,7 +16,7 @@ RUN yarn install && yarn build RUN npm prune --production RUN yarn autoclean -FROM node:18-alpine +FROM node:20-alpine WORKDIR /app