Dockerfile.prod 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # # Stage 1: Dependencies
  2. # FROM node:18-alpine AS deps
  3. # WORKDIR /app
  4. # # 安装 pnpm
  5. # RUN npm install -g pnpm
  6. # # 安装 bash 和其他必要的工具
  7. # RUN apk add --no-cache libc6-compat bash
  8. # # 复制 package.json 和 pnpm-lock.yaml(如果有的话)
  9. # COPY package.json pnpm-lock.yaml* ./
  10. # # 安装依赖
  11. # RUN pnpm install --frozen-lockfile
  12. # # Stage 2: Builder
  13. # FROM node:18-alpine AS builder
  14. # WORKDIR /app
  15. # # 安装 pnpm 和 bash
  16. # RUN npm install -g pnpm
  17. # RUN apk add --no-cache bash
  18. # # 复制所有文件
  19. # COPY . .
  20. # # 复制 node_modules
  21. # COPY --from=deps /app/node_modules ./node_modules
  22. # # 构建应用
  23. # RUN pnpm build
  24. # # Stage 3: Runner
  25. # FROM node:18-alpine AS runner
  26. # WORKDIR /app
  27. # ENV NODE_ENV production
  28. # # 安装 bash
  29. # RUN apk add --no-cache bash
  30. # # 创建非 root 用户
  31. # RUN addgroup --system --gid 1001 nodejs
  32. # RUN adduser --system --uid 1001 nextjs
  33. # # 创建 uploads 目录并设置权限
  34. # # RUN mkdir -p /app/public/uploads && chown -R nextjs:nodejs /app/public
  35. # # 复制必要文件
  36. # COPY --from=builder /app/public ./public
  37. # COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
  38. # COPY --from=builder /app/node_modules ./node_modules
  39. # COPY --from=builder /app/package.json ./package.json
  40. # # 设置为非 root 用户
  41. # USER nextjs
  42. # # 暴露端口
  43. # EXPOSE 3000
  44. # ENV PORT 3000
  45. # # 使用 bash 启动应用
  46. # CMD ["/bin/bash", "-c", "node_modules/.bin/next start"]
  47. # Install dependencies only when needed
  48. FROM node:alpine AS deps
  49. # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
  50. RUN apk add --no-cache libc6-compat
  51. WORKDIR /app
  52. COPY package.json yarn.lock ./
  53. RUN yarn install --frozen-lockfile
  54. # Rebuild the source code only when needed
  55. FROM node:alpine AS builder
  56. WORKDIR /app
  57. COPY . .
  58. COPY --from=deps /app/node_modules ./node_modules
  59. RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
  60. # Production image, copy all the files and run next
  61. FROM node:alpine AS runner
  62. WORKDIR /app
  63. ENV NODE_ENV production
  64. RUN addgroup -g 1001 -S nodejs
  65. RUN adduser -S nextjs -u 1001
  66. # You only need to copy next.config.js if you are NOT using the default configuration
  67. # COPY --from=builder /app/next.config.js ./
  68. COPY --from=builder /app/public ./public
  69. COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
  70. COPY --from=builder /app/node_modules ./node_modules
  71. COPY --from=builder /app/package.json ./package.json
  72. USER nextjs
  73. EXPOSE 3000
  74. ENV PORT 3000
  75. # Next.js collects completely anonymous telemetry data about general usage.
  76. # Learn more here: https://nextjs.org/telemetry
  77. # Uncomment the following line in case you want to disable telemetry.
  78. # ENV NEXT_TELEMETRY_DISABLED 1
  79. # CMD ["node_modules/.bin/next", "start"]
  80. CMD ["/bin/bash", "-c", "node_modules/.bin/next start"]