|
@@ -5,22 +5,31 @@ RUN apk add --no-cache libc6-compat
|
|
|
RUN npm install -g pnpm
|
|
|
|
|
|
WORKDIR /app
|
|
|
-COPY package.json ./
|
|
|
-COPY .env.local .env.local
|
|
|
+
|
|
|
+# 复制 pnpm 相关文件
|
|
|
+COPY package.json pnpm-lock.yaml* ./
|
|
|
COPY .npmrc .npmrc
|
|
|
-RUN pnpm install
|
|
|
+
|
|
|
+# 使用 pnpm 安装依赖
|
|
|
+RUN pnpm install --frozen-lockfile
|
|
|
|
|
|
# Rebuild the source code only when needed
|
|
|
FROM node:alpine AS builder
|
|
|
WORKDIR /app
|
|
|
|
|
|
-# 添加这行
|
|
|
+# 安装 pnpm
|
|
|
+RUN npm install -g pnpm
|
|
|
+
|
|
|
+# 复制依赖
|
|
|
+COPY --from=deps /app/node_modules ./node_modules
|
|
|
+COPY . .
|
|
|
+
|
|
|
+# 使用构建参数
|
|
|
ARG MONGODB_URI
|
|
|
ENV MONGODB_URI=$MONGODB_URI
|
|
|
|
|
|
-COPY . .
|
|
|
-COPY --from=deps /app/node_modules ./node_modules
|
|
|
-RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
|
|
|
+# 使用 pnpm 构建
|
|
|
+RUN pnpm build
|
|
|
|
|
|
# Production image, copy all the files and run next
|
|
|
FROM node:alpine AS runner
|
|
@@ -31,22 +40,17 @@ ENV NODE_ENV production
|
|
|
RUN addgroup -g 1001 -S nodejs
|
|
|
RUN adduser -S nextjs -u 1001
|
|
|
|
|
|
-# You only need to copy next.config.js if you are NOT using the default configuration
|
|
|
-# COPY --from=builder /app/next.config.js ./
|
|
|
+# 复制必要文件
|
|
|
COPY --from=builder /app/public ./public
|
|
|
-COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
|
|
|
-COPY --from=builder /app/node_modules ./node_modules
|
|
|
COPY --from=builder /app/package.json ./package.json
|
|
|
+COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
|
|
+COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
|
|
|
|
|
USER nextjs
|
|
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
ENV PORT 3000
|
|
|
+ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
|
|
-# Next.js collects completely anonymous telemetry data about general usage.
|
|
|
-# Learn more here: https://nextjs.org/telemetry
|
|
|
-# Uncomment the following line in case you want to disable telemetry.
|
|
|
-# ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
-
|
|
|
-CMD ["node_modules/.bin/next", "start"]
|
|
|
+CMD ["node", "server.js"]
|