feat: 支持生产容器化部署

This commit is contained in:
zetaloop
2026-05-03 08:43:22 +08:00
parent 48effb4eeb
commit 4f878340e6
4 changed files with 47 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.git
.gitignore
.next
node_modules
.env*
!.env.example
.vscode
.DS_Store
README*
*.md
.serena
.sisyphus
.claude
.idea
+31
View File
@@ -0,0 +1,31 @@
# syntax=docker/dockerfile:1.7
FROM node:25-alpine AS base
RUN npm install -g --force corepack@latest && corepack enable
FROM base AS deps
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
pnpm install --frozen-lockfile --prod=false
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV NEXT_TELEMETRY_DISABLED=1
RUN pnpm build
FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production \
NEXT_TELEMETRY_DISABLED=1 \
PORT=3000 \
HOSTNAME=::
RUN addgroup --system --gid 1001 nodejs && \
adduser --system --uid 1001 --ingroup nodejs nextjs
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
USER nextjs
EXPOSE 3000
CMD ["node", "server.js"]
+1
View File
@@ -1,6 +1,7 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "standalone",
async rewrites() {
// 仅在开发环境启用 API 代理
if (process.env.NODE_ENV !== "development") {
+1
View File
@@ -2,6 +2,7 @@
"name": "juwan-frontend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",