18 lines
737 B
Docker
18 lines
737 B
Docker
# 国内默认走镜像;海外可 --build-arg REGISTRY_MIRROR= 直连
|
|
ARG REGISTRY_MIRROR=docker.m.daocloud.io/library/
|
|
FROM ${REGISTRY_MIRROR}node:20-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci --legacy-peer-deps 2>/dev/null || npm install --legacy-peer-deps
|
|
COPY . .
|
|
RUN chmod -R +x node_modules/.bin 2>/dev/null || true
|
|
RUN npm run build
|
|
|
|
ARG REGISTRY_MIRROR=docker.m.daocloud.io/library/
|
|
FROM ${REGISTRY_MIRROR}nginx:alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
# 与 deploy/admin/default.conf 同逻辑:^~ /assets/ 避免缺失 chunk 时回退到 index.html → MIME text/html 白屏
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|