Fix: Use Node.js 22 in Dockerfile (required by pnpm)
This commit is contained in:
parent
f125015bcc
commit
6a19374af2
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:20-alpine AS builder
|
||||
FROM node:22-alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
@ -16,7 +16,7 @@ RUN pnpm install --frozen-lockfile
|
|||
RUN pnpm build
|
||||
|
||||
# Production runner
|
||||
FROM node:20-alpine
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue