chore: 完善 Docker 部署配置并修复测试超时

- 新增 Dockerfile: 多阶段构建,优化镜像大小
- 新增 .dockerignore: 加速构建,排除不必要文件
- 更新 docker-compose.yml: 使用 SQLite 简化部署
- 修复 vitest.config.js: testTimeout 改为 60000ms 修复慢测试超时
This commit is contained in:
2026-04-08 22:13:46 +08:00
parent a85d822419
commit 1b96715b55
4 changed files with 130 additions and 12 deletions

View File

@@ -29,7 +29,7 @@ export default defineConfig({
'src/vite-env.d.ts',
],
},
timeout: 10000,
testTimeout: 60000,
clearMocks: true,
},
})