This commit is contained in:
2025-10-21 13:12:00 +08:00
parent 30a3fc8be8
commit abdea80b03

View File

@@ -11,7 +11,7 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci --only=production RUN npm ci
COPY . . COPY . .
@@ -20,11 +20,16 @@ RUN npm run build
# 生产阶段 # 生产阶段
FROM node:24-alpine AS production FROM node:24-alpine AS production
RUN npm config set registry https://registry.npmmirror.com
WORKDIR /app WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules # 只复制生产依赖
COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force
# 只复制构建产物
COPY --from=builder /app/dist ./dist COPY --from=builder /app/dist ./dist
COPY --from=builder /app/package*.json ./
RUN addgroup -g 1001 -S nodejs RUN addgroup -g 1001 -S nodejs
RUN adduser -S nextjs -u 1001 RUN adduser -S nextjs -u 1001