mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-11-04 08:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.5.1
 | 
						|
MAINTAINER Richard Chien <richardchienthebest@gmail.com>
 | 
						|
 | 
						|
COPY *.py ./
 | 
						|
COPY commands commands
 | 
						|
COPY filters filters
 | 
						|
COPY requirements.txt requirements.txt
 | 
						|
 | 
						|
RUN pip install --upgrade pip
 | 
						|
RUN pip install -r requirements.txt
 | 
						|
 | 
						|
CMD python app.py |