10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:alpine3.21
 | 
						|
 | 
						|
COPY requirements.txt .
 | 
						|
ENV PIP_ROOT_USER_ACTION=ignore
 | 
						|
RUN pip install -r requirements.txt
 | 
						|
 | 
						|
WORKDIR /pgbot
 | 
						|
COPY . .
 | 
						|
 | 
						|
CMD /pgbot/pgbot
 |