@@ -1,7 +1,7 @@
FROM node:18-alpine AS build
WORKDIR /app
COPY package*.json ./
-RUN npm ci
+RUN npm config set registry https://registry.npmmirror.com && npm install
COPY . .
RUN npm run build