21
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
zpc 2026-03-29 22:32:22 +08:00
parent 815dad9e9c
commit 7f95973ce6

View File

@ -2,7 +2,7 @@
FROM 192.168.195.25:19900/library/node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN rm -f package-lock.json && npm install
RUN npm config set registry https://registry.npmmirror.com && rm -f package-lock.json && npm install
COPY . .
RUN npm run build:prod