Add config setting to enable Jinja templates Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
		
			
				
	
	
		
			7 lines
		
	
	
		
			295 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			295 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.11-alpine
 | 
						|
RUN python3 -m pip --no-cache-dir install bleach jinja2 markdown matrix-nio
 | 
						|
ADD matrixchat-notify.py /bin/
 | 
						|
ADD matrixchat-notify-config.json /etc/
 | 
						|
RUN chmod +x /bin/matrixchat-notify.py
 | 
						|
ENTRYPOINT ["/bin/matrixchat-notify.py", "-c", "/etc/matrixchat-notify-config.json"]
 |