You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							444 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							20 lines
						
					
					
						
							444 B
						
					
					
				
								FROM debian:sid
							 | 
						|
								
							 | 
						|
								LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
							 | 
						|
								
							 | 
						|
								RUN apt-get update \
							 | 
						|
									&& apt-get install --no-install-recommends --no-install-suggests -y \
							 | 
						|
								            openssl \
							 | 
						|
														ca-certificates \
							 | 
						|
														nginx-extras \
							 | 
						|
								            python-pip \
							 | 
						|
								            python-setuptools \
							 | 
						|
									&& rm -rf /var/lib/apt/lists/*
							 | 
						|
								
							 | 
						|
								RUN pip2 install envtpl
							 | 
						|
								
							 | 
						|
								COPY entrypoint.sh /
							 | 
						|
								
							 | 
						|
								ENTRYPOINT ["/entrypoint.sh"]
							 | 
						|
								
							 | 
						|
								CMD ["nginx", "-g", "daemon off;"]
							 |