fix(mpc-service): 安装 OpenSSL 1.1 修复 Prisma 引擎加载失败

错误: libssl.so.1.1: No such file or directory
解决: 在 production stage 安装 openssl1.1-compat

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Developer 2025-12-02 10:14:36 -08:00
parent 2297be1a04
commit b67a5434e2
1 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,9 @@ FROM node:20-alpine
WORKDIR /app
# Install OpenSSL 1.1 for Prisma
RUN apk add --no-cache openssl1.1-compat
# Install production dependencies only
COPY package*.json ./
RUN npm ci --only=production