11 lines
		
	
	
		
			252 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			252 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM phusion/baseimage:latest
 | 
						|
 | 
						|
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 | 
						|
 | 
						|
COPY run-certbot.sh /root/certbot/run-certbot.sh
 | 
						|
 | 
						|
RUN apt-get update
 | 
						|
RUN apt-get install -y letsencrypt
 | 
						|
 | 
						|
ENTRYPOINT bash -c "bash /root/certbot/run-certbot.sh && sleep infinity"
 |