# 本地构建阶段 - 使用本地源码,不从 git 克隆 FROM node:24-alpine AS builder WORKDIR /app RUN npm config set registry https://registry.npmmirror.com/ && \ yarn config set registry https://registry.npmmirror.com/ # 复制依赖文件 COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile # 复制源码 COPY tsconfig.json ./ COPY src/ ./src/ COPY scripts/ ./scripts/ RUN yarn build # 生产阶段 FROM node:24-alpine WORKDIR /app # 安装 nginx 和 supervisor RUN apk add --no-cache nginx supervisor && \ mkdir -p /var/lib/nginx/logs /var/log/nginx && \ npm config set registry https://registry.npmmirror.com/ && \ yarn config set registry https://registry.npmmirror.com/ && \ npm install -g pm2 # 复制后端文件 COPY --from=builder /app/build ./build COPY --from=builder /app/data/serve ./data/serve COPY --from=builder /app/package.json ./ COPY --from=builder /app/yarn.lock ./ # 复制静态页面到 nginx 目录 COPY --from=builder /app/scripts/web /usr/share/nginx/html # 只安装生产依赖 RUN yarn install --frozen-lockfile --production # 配置 nginx RUN cat > /etc/nginx/http.d/default.conf << 'EOF' server { listen 80; location / { root /usr/share/nginx/html; index index.html; try_files $uri $uri/ /index.html; } } EOF # 配置 nginx 主配置,日志输出到 stderr/stdout RUN sed -i 's|error_log /var/log/nginx/error.log warn;|error_log /dev/stderr warn;|g' /etc/nginx/nginx.conf || true && \ sed -i 's|access_log /var/log/nginx/access.log main;|access_log /dev/stdout main;|g' /etc/nginx/nginx.conf || true # 配置 supervisor RUN cat > /etc/supervisord.conf << 'EOF' [supervisord] nodaemon=true logfile=/var/log/supervisord.log pidfile=/var/run/supervisord.pid [program:nginx] command=nginx -g "daemon off;" autostart=true autorestart=true stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 [program:app] command=pm2-runtime start data/serve/app.js --name app directory=/app autostart=true autorestart=true stdout_logfile=/dev/stdout stdout_logfile_maxbytes=0 stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 environment=NODE_ENV=prod EOF ENV NODE_ENV=prod EXPOSE 80 EXPOSE 10588 # 启动时创建必要目录(防止 volume 挂载覆盖) CMD sh -c "mkdir -p /var/log/nginx /var/lib/nginx/logs && exec supervisord -c /etc/supervisord.conf"