修复bug

This commit is contained in:
2025-07-08 16:44:04 +08:00
parent aa2416c5d6
commit 1af79c4111
22 changed files with 400 additions and 1036 deletions

View File

@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:18-alpine3.18
# 设置工作目录
WORKDIR /app
@@ -8,17 +8,21 @@ RUN apk add --no-cache \
python3 \
make \
g++ \
curl
curl \
openssl1.1-compat
# 复制 package.json 和 package-lock.json
COPY package*.json ./
# 安装依赖
RUN npm ci --only=production && npm cache clean --force
RUN npm install
# 复制源代码
COPY . .
# 构建项目
RUN npm run build
# 创建非root用户
RUN addgroup -g 1001 -S nodejs
RUN adduser -S nodejs -u 1001
@@ -30,9 +34,10 @@ USER nodejs
# 暴露端口
EXPOSE 3001
RUN npx prisma generate
# 健康检查
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -f http://localhost:3001/health || exit 1
# 启动命令
CMD ["npm", "run", "dev"]
CMD [ "sh", "-c", "npm run db:push && npm run db:seed && npm run start" ]