Dockerfile.prod 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. COPY .env.local .env.local
  8. RUN yarn install --frozen-lockfile
  9. # Rebuild the source code only when needed
  10. FROM node:alpine AS builder
  11. WORKDIR /app
  12. # 添加这行
  13. ARG MONGODB_URI
  14. ENV MONGODB_URI=$MONGODB_URI
  15. COPY . .
  16. COPY --from=deps /app/node_modules ./node_modules
  17. RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
  18. # Production image, copy all the files and run next
  19. FROM node:alpine AS runner
  20. WORKDIR /app
  21. ENV NODE_ENV production
  22. RUN addgroup -g 1001 -S nodejs
  23. RUN adduser -S nextjs -u 1001
  24. # You only need to copy next.config.js if you are NOT using the default configuration
  25. # COPY --from=builder /app/next.config.js ./
  26. COPY --from=builder /app/public ./public
  27. COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
  28. COPY --from=builder /app/node_modules ./node_modules
  29. COPY --from=builder /app/package.json ./package.json
  30. USER nextjs
  31. EXPOSE 3000
  32. ENV PORT 3000
  33. # Next.js collects completely anonymous telemetry data about general usage.
  34. # Learn more here: https://nextjs.org/telemetry
  35. # Uncomment the following line in case you want to disable telemetry.
  36. # ENV NEXT_TELEMETRY_DISABLED 1
  37. CMD ["node_modules/.bin/next", "start"]