Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	更新dockerfile说明书
Browse files- Dockerfile +3 -0
    	
        Dockerfile
    CHANGED
    
    | @@ -1,3 +1,6 @@ | |
|  | |
|  | |
|  | |
| 1 | 
             
            FROM python:3.11
         | 
| 2 |  | 
| 3 | 
             
            RUN echo '[global]' > /etc/pip.conf && \
         | 
|  | |
| 1 | 
            +
            # 此Dockerfile适用于“无本地模型”的环境构建,如果需要使用chatglm等本地模型,请参考 docs/Dockerfile+ChatGLM
         | 
| 2 | 
            +
            # 如何构建 docker build -t gpt-academic .
         | 
| 3 | 
            +
            # 如何运行 docker run --rm -it --net=host gpt-academic
         | 
| 4 | 
             
            FROM python:3.11
         | 
| 5 |  | 
| 6 | 
             
            RUN echo '[global]' > /etc/pip.conf && \
         |