feat :init

This commit is contained in:
2025-11-02 19:34:16 +08:00
commit b767041311
617 changed files with 124099 additions and 0 deletions

17
Dockerfile-node Normal file
View File

@@ -0,0 +1,17 @@
FROM node:18-alpine
WORKDIR /node
COPY web .
# 安装所有依赖
RUN npm config set registry https://registry.npmmirror.com && \
npm install
# 设置环境变量
ENV HOST=0.0.0.0
ENV PORT=8084
ENV API_URL=http://server:8091
# 使用开发模式
CMD ["npm", "run", "dev"]