# ================================ # 阶段 1: 构建阶段 # ================================ FROM --platform=linux/amd64 registry.boss160.cn/base/node:18-alpine AS builder # 使用阿里云镜像源加速 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories # 设置工作目录 WORKDIR /build # 设置 npm 镜像源 RUN npm config set registry https://registry.npmmirror.com # 复制 package.json 和 package-lock.json(利用 Docker 缓存) COPY package*.json ./ # 安装依赖 RUN npm ci --legacy-peer-deps # 复制源代码 COPY . . # 构建生产版本(跳过类型检查) ENV VUE_CLI_SKIP_TYPE_CHECK=true RUN npm run build # ================================ # 阶段 2: 运行阶段 (nginx) # ================================ FROM --platform=linux/amd64 registry.boss160.cn/base/nginx:alpine # 使用阿里云镜像源加速 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories # 设置时区 ENV TZ=Asia/Shanghai RUN apk add --no-cache tzdata # 删除默认 nginx 配置 RUN rm -rf /etc/nginx/conf.d/* # 复制自定义 nginx 配置 COPY docker/nginx.conf /etc/nginx/conf.d/default.conf # 从构建阶段复制构建产物 COPY --from=builder /build/dist /usr/share/nginx/html # 暴露端口 EXPOSE 80 # 健康检查 HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://127.0.0.1/health || exit 1 # 启动 nginx CMD ["nginx", "-g", "daemon off;"]