自动化配置
> 修改了dockerfile以及代理以适配自动化部署

Change-Id: I80deab3e9f80a0584cbd1d4b8193f17eb7a89dc7
diff --git a/.dockerignore b/.dockerignore
deleted file mode 100644
index dd63092..0000000
--- a/.dockerignore
+++ /dev/null
@@ -1,12 +0,0 @@
-# 排除构建工具生成的文件
-node_modules  # Node.js 依赖
-target      # Maven/Java 构建输出
-dist
-build         # 通用构建目录
-
-# 排除临时文件
-*.log          # 日志文件
-*.swp          # Vim 交换文件
-.idea         # IntelliJ IDEA 配置
-.vscode       # VS Code 配置
-.idea
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index deb81af..bd111ff 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,21 +1,6 @@
-# 构建阶段
-FROM node:23-alpine AS builder
-WORKDIR /src
-
-# 安装 pnpm
-RUN npm install -g pnpm
-
-# 复制依赖文件并安装
-COPY package.json pnpm-lock.yaml ./
-RUN pnpm install --frozen-lockfile
-
-# 复制源码并构建
-COPY . .
-RUN pnpm build
-
 # 生产环境
 FROM nginx:1.25-alpine
-COPY --from=builder /src/dist /usr/share/nginx/html
+COPY dist /usr/share/nginx/html
 COPY 50x.html  /usr/share/nginx/html
 COPY nginx.conf /etc/nginx/conf.d/default.conf
 EXPOSE 80
diff --git a/nginx.conf b/nginx.conf
index 45a62ad..4622a0b 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -23,7 +23,7 @@
     
     # API 请求代理到后端
     location /api/ {
-        proxy_pass http://team1-backend:8080/;  # 后端服务地址
+        proxy_pass http://team1.10813352.xyz:5001/;  # 后端服务地址
         proxy_set_header Host $host;
         proxy_set_header X-Real-IP $remote_addr;
         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;