61 lines
2.0 KiB
Docker
61 lines
2.0 KiB
Docker
|
|
# ==============================
|
|||
|
|
# 1️⃣ 构建阶段
|
|||
|
|
# ==============================
|
|||
|
|
FROM node:20-alpine AS builder
|
|||
|
|
|
|||
|
|
WORKDIR /app
|
|||
|
|
|
|||
|
|
# ------------------------------
|
|||
|
|
# npm / pnpm registry 配置
|
|||
|
|
# ------------------------------
|
|||
|
|
RUN npm config set registry https://registry.npmmirror.com && \
|
|||
|
|
echo "registry=https://registry.npmmirror.com" > ~/.npmrc
|
|||
|
|
|
|||
|
|
# pnpm registry 默认指向 1Panel 内部的 Verdaccio(与 vben 前端共用)
|
|||
|
|
# 如果 Jenkins 容器不在 1panel-network 网络里,可以通过 build-arg 覆盖:
|
|||
|
|
# docker build --build-arg PNPM_REGISTRY=https://registry.npmmirror.com ...
|
|||
|
|
ARG PNPM_REGISTRY=http://1Panel-verdaccio-Ynee:4873/
|
|||
|
|
ENV PNPM_HOME="/pnpm"
|
|||
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|||
|
|
RUN corepack enable && corepack prepare pnpm@10.22.0 --activate
|
|||
|
|
RUN pnpm config set registry $PNPM_REGISTRY
|
|||
|
|
RUN pnpm config set store-dir /pnpm/store
|
|||
|
|
|
|||
|
|
# ------------------------------
|
|||
|
|
# 复制源码
|
|||
|
|
# ------------------------------
|
|||
|
|
COPY package.json pnpm-lock.yaml turbo.json pnpm-workspace.yaml ./
|
|||
|
|
COPY packages packages
|
|||
|
|
COPY apps apps
|
|||
|
|
COPY internal internal
|
|||
|
|
|
|||
|
|
# ------------------------------
|
|||
|
|
# 安装依赖 + 构建
|
|||
|
|
# network-concurrency 限制并发下载,降低 CI 带宽占用
|
|||
|
|
# ------------------------------
|
|||
|
|
RUN --mount=type=cache,id=pnpm-store,target=/pnpm/store \
|
|||
|
|
pnpm install --frozen-lockfile --network-concurrency 2
|
|||
|
|
|
|||
|
|
# 限制 turbo 并发与 Node 内存,避免在 8GB 服务器上 OOM
|
|||
|
|
ENV NODE_OPTIONS="--max-old-space-size=1024 --expose-gc"
|
|||
|
|
ENV UV_THREADPOOL_SIZE=2
|
|||
|
|
RUN pnpm exec turbo build --filter=@vben/web-antd --concurrency=1
|
|||
|
|
|
|||
|
|
# ==============================
|
|||
|
|
# 2️⃣ 运行阶段
|
|||
|
|
# ==============================
|
|||
|
|
FROM nginx:alpine
|
|||
|
|
|
|||
|
|
# 移除默认配置
|
|||
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|||
|
|
|
|||
|
|
# 复制自定义 Nginx 配置(含 /admin-api 反代到后端 gateway)
|
|||
|
|
COPY apps/web-antd/nginx.conf /etc/nginx/conf.d/default.conf
|
|||
|
|
|
|||
|
|
# 复制构建产物
|
|||
|
|
COPY --from=builder /app/apps/web-antd/dist /usr/share/nginx/html
|
|||
|
|
|
|||
|
|
EXPOSE 80
|
|||
|
|
|
|||
|
|
CMD ["nginx", "-g", "daemon off;"]
|