jina-ai: use node 22

This commit is contained in:
yanlong.wang 2025-02-18 14:35:44 +08:00
parent acb05dbeee
commit 45230b9552
No known key found for this signature in database
GPG Key ID: C0A623C0BADF9F37

View File

@ -1,5 +1,5 @@
# ---- BUILD STAGE ----
FROM node:20-slim AS builder
FROM node:22-slim AS builder
# Set working directory
WORKDIR /app
@ -27,7 +27,7 @@ WORKDIR /app/jina-ai
RUN npm run build
# ---- PRODUCTION STAGE ----
FROM node:20 AS production
FROM node:22 AS production
# Set working directory
WORKDIR /app