# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM --platform=$BUILDPLATFORM build-steps-public-registry.cn-beijing.cr.aliyuncs.com/mirrors/node:22.12-alpine AS builder

# 复制项目文件
COPY . /app
COPY tsconfig.json /tsconfig.json

WORKDIR /app

# 安装依赖并构建
RUN --mount=type=cache,target=/root/.npm npm install

# 添加构建步骤以生成 dist 目录
RUN npm run build

FROM build-steps-public-registry.cn-beijing.cr.aliyuncs.com/mirrors/node:22.12-alpine AS release

# 从构建阶段复制必要文件
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/package-lock.json /app/package-lock.json

ENV NODE_ENV=production

WORKDIR /app

# 安装生产依赖
RUN npm ci --ignore-scripts --omit=dev

ENTRYPOINT ["node", "dist/index.js"]
