Fix: Use Node.js 22 in Dockerfile (required by pnpm)
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run

This commit is contained in:
Manohar Gupta 2026-05-13 21:15:36 +05:30
parent f125015bcc
commit 6a19374af2

View file

@ -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