Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/production/deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -235,7 +235,7 @@ version: '3'

services:
payload:
image: node:18-alpine
image: node:22-alpine
ports:
- '3000:3000'
volumes:
Expand Down