10 lines
		
	
	
		
			234 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			234 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:slim
 | 
						|
COPY . /app
 | 
						|
WORKDIR /app
 | 
						|
RUN apt-get update -y
 | 
						|
RUN apt-get upgrade -y
 | 
						|
RUN apt-get install libopus0 -y
 | 
						|
RUN pip install --upgrade pip
 | 
						|
RUN pip install -r requirements.txt
 | 
						|
RUN apt-get autoremove -y
 | 
						|
CMD python3 -u ./bot.py |