Files
hiderfong e7c7f92b69 chore: 补充生产部署配置
- requirements.txt 添加 requests 依赖
- 新增 docker-compose.prod.yml 生产编排文件
- 新增 frontend/Dockerfile.prod 前端生产镜像
- 新增 frontend/nginx.conf 反向代理配置
2026-04-25 10:45:25 +08:00

22 lines
335 B
Docker

# Build stage
FROM node:20-alpine AS builder
WORKDIR /app
RUN npm install -g npm@10
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
# Production stage
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]