From ecdc158fe5e98a072066a7e59b94c602cc8ad934 Mon Sep 17 00:00:00 2001 From: chenhang Date: Thu, 16 Jul 2026 10:09:32 +0800 Subject: [PATCH] build(docker): standardize on Node.js 24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2da0c8fc..12a30c52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine AS base +FROM node:24-alpine AS base WORKDIR /app ENV NEXT_TELEMETRY_DISABLED=1 @@ -30,7 +30,7 @@ RUN --mount=type=secret,id=next_env,target=/tmp/next_env,required=false \ pnpm run build; \ rm -f .env .env.local .env.development .env.production -FROM node:22-alpine AS runner +FROM node:24-alpine AS runner WORKDIR /app ENV NODE_ENV=production