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

Change-Id: I80deab3e9f80a0584cbd1d4b8193f17eb7a89dc7
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