27 lines
		
	
	
		
			768 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			768 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# 此Dockerfile适用于“无本地模型”的环境构建,如果需要使用chatglm等本地模型,请参考 docs/Dockerfile+ChatGLM
 | 
						||
# 如何构建: 先修改 `config.py`, 然后 docker build -t gpt-academic .
 | 
						||
# 如何运行: docker run --rm -it --net=host gpt-academic
 | 
						||
FROM python:3.11
 | 
						||
 | 
						||
RUN echo '[global]' > /etc/pip.conf && \
 | 
						||
    echo 'index-url = https://mirrors.aliyun.com/pypi/simple/' >> /etc/pip.conf && \
 | 
						||
    echo 'trusted-host = mirrors.aliyun.com' >> /etc/pip.conf
 | 
						||
 | 
						||
 | 
						||
WORKDIR /gpt
 | 
						||
 | 
						||
 | 
						||
 | 
						||
 | 
						||
# 安装依赖
 | 
						||
COPY requirements.txt ./
 | 
						||
RUN pip3 install -r requirements.txt
 | 
						||
# 装载项目文件
 | 
						||
COPY . .
 | 
						||
 | 
						||
# 可选步骤,用于预热模块
 | 
						||
RUN python3  -c 'from check_proxy import warm_up_modules; warm_up_modules()'
 | 
						||
 | 
						||
# 启动
 | 
						||
CMD ["python3", "-u", "main.py"]
 |