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:
parent
2297be1a04
commit
b67a5434e2
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue