diff --git a/.npmrc b/.npmrc index b0bf76c..5e4086a 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1 @@ -registry=https://package-mirror.liara.ir/repository/npm/ +registry=https://registry.npmmirror.com/ diff --git a/Dockerfile b/Dockerfile index 2ad8da5..5f4246e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM node:24-alpine WORKDIR /app -COPY package*.json ./ +COPY package*.json .npmrc* ./ -RUN npm install +RUN npm install --registry=https://registry.npmmirror.com COPY . .