6 lines
		
	
	
		
			180 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			180 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:slim
 | 
						|
COPY . /usr/src/app
 | 
						|
WORKDIR /usr/src/app
 | 
						|
RUN pip install --upgrade pip && pip install -r requirements.txt && \
 | 
						|
    apt-get autoremove -y
 | 
						|
CMD python3 -u ./script.py |