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

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