You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			226 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			226 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for nginx
 | |
| #
 | |
| 
 | |
| FROM alpine
 | |
| MAINTAINER kev <noreply@easypi.info>
 | |
| 
 | |
| RUN set -xe \
 | |
|     && apk add -U nginx \
 | |
|     && rm -rf /var/cache/apk/*
 | |
| 
 | |
| VOLUME /usr/share/nginx/html
 | |
| 
 | |
| EXPOSE 80
 | |
| 
 | |
| CMD ["nginx", "-g", "daemon off;"]
 |