Initial commit: Copilot Toolbox template project

This commit is contained in:
Evan
2026-01-09 10:49:51 +08:00
commit 0b4b053566
31 changed files with 12085 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM node:24-alpine
WORKDIR /app
# 配置阿里云 npm 镜像
RUN npm config set registry https://registry.npmmirror.com
# 复制依赖文件
COPY package*.json ./
# 安装所有依赖(包括 devDependencies
RUN npm install
# 复制源代码
COPY . .
# 暴露端口
EXPOSE 3000
# 运行开发服务器
CMD ["npm", "run", "dev", "--", "--port", "3000"]