Dockerfile.prod 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # # Install dependencies only when needed
  2. # FROM node:alpine AS deps
  3. # # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
  4. # RUN apk add --no-cache libc6-compat
  5. # WORKDIR /app
  6. # COPY package.json yarn.lock ./
  7. # RUN yarn install --frozen-lockfile
  8. # # Rebuild the source code only when needed
  9. # FROM node:alpine AS builder
  10. # WORKDIR /app
  11. # COPY . .
  12. # COPY --from=deps /app/node_modules ./node_modules
  13. # RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
  14. # # Production image, copy all the files and run next
  15. # FROM node:alpine AS runner
  16. # WORKDIR /app
  17. # ENV NODE_ENV production
  18. # RUN addgroup -g 1001 -S nodejs
  19. # RUN adduser -S nextjs -u 1001
  20. # # You only need to copy next.config.js if you are NOT using the default configuration
  21. # # COPY --from=builder /app/next.config.js ./
  22. # COPY --from=builder /app/public ./public
  23. # COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
  24. # COPY --from=builder /app/node_modules ./node_modules
  25. # COPY --from=builder /app/package.json ./package.json
  26. # USER nextjs
  27. # EXPOSE 3000
  28. # ENV PORT 3000
  29. # # Next.js collects completely anonymous telemetry data about general usage.
  30. # # Learn more here: https://nextjs.org/telemetry
  31. # # Uncomment the following line in case you want to disable telemetry.
  32. # # ENV NEXT_TELEMETRY_DISABLED 1
  33. # CMD ["node_modules/.bin/next", "start"]
  34. # Stage 1: Dependencies
  35. FROM node:alpine AS deps
  36. WORKDIR /app
  37. # 安装 libc6-compat(如果需要的话)
  38. RUN apk add --no-cache libc6-compat
  39. # 配置 yarn 使用淘宝镜像
  40. RUN yarn config set registry https://registry.npm.taobao.org
  41. # 配置 DNS
  42. RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf
  43. # 复制 package.json、yarn.lock 和 .yarnrc(如果你创建了的话)
  44. COPY package.json yarn.lock .yarnrc* ./
  45. # 安装依赖
  46. RUN yarn install --frozen-lockfile --network-timeout 600000 --network-concurrency 1
  47. # Stage 2: Builder
  48. FROM node:alpine AS builder
  49. WORKDIR /app
  50. # Copy all files
  51. COPY . .
  52. # Copy node_modules from deps stage
  53. COPY --from=deps /app/node_modules ./node_modules
  54. # Build the app
  55. RUN yarn build
  56. # Stage 3: Runner
  57. FROM node:alpine AS runner
  58. WORKDIR /app
  59. ENV NODE_ENV production
  60. # Create a non-root user
  61. RUN addgroup --system --gid 1001 nodejs
  62. RUN adduser --system --uid 1001 nextjs
  63. # Copy necessary files from builder stage
  64. COPY --from=builder /app/public ./public
  65. COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
  66. COPY --from=builder /app/node_modules ./node_modules
  67. COPY --from=builder /app/package.json ./package.json
  68. # Set user to non-root
  69. USER nextjs
  70. # Expose the port the app will run on
  71. EXPOSE 3000
  72. ENV PORT 3000
  73. # Disable Next.js telemetry if desired
  74. # ENV NEXT_TELEMETRY_DISABLED 1
  75. # Start the application
  76. CMD ["yarn", "start"]