7 lines
		
	
	
		
			249 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			249 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.9.6-buster
 | 
						|
RUN apt-get update -y && apt-get upgrade -y && apt-get install libopus0 libffi libffi-dev  -y
 | 
						|
COPY . /usr/src/app
 | 
						|
WORKDIR /usr/src/app
 | 
						|
RUN pip install --upgrade pip
 | 
						|
RUN pip install -r requirements.txt
 | 
						|
CMD python3 -u ./bot.py |