From 6ac1d24d21d42c893709332d31cf3f56352f42b5 Mon Sep 17 00:00:00 2001 From: Superuser Date: Mon, 18 May 2026 23:16:54 +0800 Subject: [PATCH] feat: use npmmirror for faster installs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8576459..356739c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:24-alpine AS build WORKDIR /app COPY package*.json ./ -RUN npm install +RUN npm config set registry https://registry.npmmirror.com && npm install COPY . . RUN npm run build