File size: 371 Bytes
976cbaa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17598ea
 
976cbaa
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM node:18.18.0

# 安装git
RUN apt-get update && apt-get install -y git

# 设置工作目录
WORKDIR /app

# 安装pnpm
RUN npm install -g pnpm

# 克隆Git仓库
RUN git clone https://github.com/u14app/deep-research.git .

# 安装依赖
RUN pnpm install

RUN chmod -R 777 /app

# 暴露开发服务器端口
EXPOSE 3000

# 启动开发服务器
CMD ["pnpm", "dev"]