alexcdev1 il y a 6 mois
Parent
commit
d7392f4630
2 fichiers modifiés avec 17 ajouts et 6 suppressions
  1. 5 5
      Dockerfile.prod
  2. 12 1
      nginx/default.conf

+ 5 - 5
Dockerfile.prod

@@ -7,7 +7,7 @@ RUN npm install -g pnpm
 WORKDIR /app
 
 # 复制 pnpm 相关文件
-COPY package.json pnpm-lock.yaml .npmrc* ./
+COPY package.json pnpm-lock.yaml* .npmrc* ./
 
 # 使用 pnpm 安装依赖
 RUN pnpm install --frozen-lockfile
@@ -19,7 +19,7 @@ WORKDIR /app
 # 安装 pnpm
 RUN npm install -g pnpm
 
-# 复制依赖
+# 复制依赖和源代码
 COPY --from=deps /app/node_modules ./node_modules
 COPY . .
 
@@ -42,8 +42,8 @@ RUN adduser -S nextjs -u 1001
 # 复制必要文件
 COPY --from=builder /app/public ./public
 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
+COPY --from=builder /app/node_modules ./node_modules
+COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
 
 USER nextjs
 
@@ -52,4 +52,4 @@ EXPOSE 3000
 ENV PORT 3000
 ENV NEXT_TELEMETRY_DISABLED 1
 
-CMD ["sh", "-c", "if [ -d .next/standalone ]; then node .next/standalone/server.js; else node_modules/.bin/next start; fi"]
+CMD ["node", "node_modules/.bin/next", "start"]

+ 12 - 1
nginx/default.conf

@@ -4,7 +4,7 @@ server {
 
     # Proxy settings
     location / {
-        proxy_pass http://nextjs:3000;
+        proxy_pass http://match-vote-nextjs-nextjs-1:3000;  # 使用完整的容器名称
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection 'upgrade';
@@ -13,6 +13,17 @@ server {
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
         proxy_set_header X-Forwarded-Proto $scheme;
         proxy_cache_bypass $http_upgrade;
+        
+        # 添加超时设置
+        proxy_connect_timeout 60s;
+        proxy_send_timeout 60s;
+        proxy_read_timeout 60s;
+    }
+
+    # 添加健康检查路由
+    location /health {
+        access_log off;
+        return 200 'OK';
     }
 
     # Security headers