feat: 当前开发代码

This commit is contained in:
2026-04-11 17:54:35 +08:00
parent b12a84e388
commit f0cc37681c
16 changed files with 176 additions and 1 deletions

31
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,31 @@
# 前端 Dockerfile (开发环境)
FROM node:18-alpine
WORKDIR /app
# 复制 package.json 和 package-lock.json
COPY package*.json ./
# 安装依赖
RUN npm ci
# 复制源代码
COPY . .
# 创建非root用户
RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001 && \
chown -R nodejs:nodejs /app
# 切换用户
USER nodejs
# 暴露端口
EXPOSE 3000
# 健康检查
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD node -e "const http = require('http'); http.get('http://localhost:3000', (res) => { if (res.statusCode !== 200) throw new Error('Health check failed') }).on('error', (err) => { console.error(err); process.exit(1); })"
# 启动开发服务器
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]

View File

@@ -7,7 +7,7 @@ export default defineConfig({
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:3001',
target: process.env.VITE_API_URL || 'http://localhost:3001',
changeOrigin: true,
},
},