q
File size: 299 Bytes
96601d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM python:3.9-slim

# 设置工作目录
WORKDIR /app

# 复制依赖文件
COPY requirements.txt .

# 安装依赖
RUN pip install -r requirements.txt

# 复制应用代码
COPY index.html .
COPY qwen.py .
COPY static ./static

# 暴露端口
EXPOSE 8000

# 启动命令
CMD ["python", "qwen.py"]