From 8df7cab4adc33489ff5250d805828e56f946547a Mon Sep 17 00:00:00 2001 From: Sean Zubrickas Date: Tue, 18 Nov 2025 14:08:36 -0500 Subject: [PATCH 1/2] updates node version number in deployment docker file --- docs/production/deployment.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/production/deployment.mdx b/docs/production/deployment.mdx index 1865133eced..23625dc8e0f 100644 --- a/docs/production/deployment.mdx +++ b/docs/production/deployment.mdx @@ -157,7 +157,7 @@ Dockerfile # Dockerfile # From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile -FROM node:18-alpine AS base +FROM node:22-alpine AS base # Install dependencies only when needed FROM base AS deps @@ -235,7 +235,7 @@ version: '3' services: payload: - image: node:18-alpine + image: node:22-alpine ports: - '3000:3000' volumes: From 4f7b4b0749b6040b58507cbcc1cc5640ffe4478f Mon Sep 17 00:00:00 2001 From: Sean Zubrickas Date: Thu, 20 Nov 2025 12:06:12 -0500 Subject: [PATCH 2/2] updates example dockerfile to node-24 --- docs/production/deployment.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/production/deployment.mdx b/docs/production/deployment.mdx index 23625dc8e0f..35cdd2e7c3a 100644 --- a/docs/production/deployment.mdx +++ b/docs/production/deployment.mdx @@ -157,7 +157,7 @@ Dockerfile # Dockerfile # From https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile -FROM node:22-alpine AS base +FROM node:24-alpine AS base # Install dependencies only when needed FROM base AS deps @@ -235,7 +235,7 @@ version: '3' services: payload: - image: node:22-alpine + image: node:24-alpine ports: - '3000:3000' volumes: