diff --git a/Dockerfile b/Dockerfile index 5116d54..57d821f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the Nest.js application -FROM node:23-alpine AS builder +FROM node:25-alpine AS builder # Install pnpm RUN corepack enable && corepack prepare pnpm@latest --activate @@ -20,7 +20,7 @@ COPY . . RUN pnpm build # Stage 2: Run the application with a minimal image -FROM node:23-alpine AS runner +FROM node:25-alpine AS runner # Install pnpm again for the runtime stage RUN corepack enable && corepack prepare pnpm@latest --activate