From 2b40c9d1c66c6f391ac3a14390fb46c219527f13 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 18:33:38 +0000 Subject: [PATCH] chore(deps): update node.js to v21 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aed7259d4..2c8de067d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---- Base ---- -FROM node:18.20.1-alpine AS base +FROM node:21.7.2-alpine AS base # ------------------ # package.json cache @@ -52,7 +52,7 @@ RUN true \ # ---- Final ---- # Resulting new, minimal image # This image must have the minimum amount of layers -FROM node:18.20.1-alpine as final +FROM node:21.7.2-alpine as final ENV NODE_ENV production