mirror of
				https://github.com/ClusterCockpit/cc-docker.git
				synced 2025-11-04 02:55:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			154 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			154 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM nginx:mainline-alpine
 | 
						|
 | 
						|
RUN mkdir -p /etc/nginx/templates
 | 
						|
COPY templates/* /etc/nginx/templates/
 | 
						|
COPY nginx.conf /etc/nginx/
 | 
						|
 | 
						|
CMD ["nginx"]
 | 
						|
EXPOSE 80
 |