Update Dockerfile to use node 22

This commit is contained in:
Anduin Xue 2025-04-16 05:44:04 +00:00 committed by GitHub
parent 97c213c235
commit 9366954cdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# ============================
# Prepare lint Environment
FROM node:21-alpine as lint-env
FROM node:22-alpine as lint-env
WORKDIR /app
COPY . .
RUN npm install --loglevel verbose