8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			164 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM nginx:alpine
 | 
						|
 | 
						|
COPY nginx.conf /etc/nginx/nginx.conf
 | 
						|
 | 
						|
RUN set -x ; \
 | 
						|
addgroup -g 82 -S www-data ; \
 | 
						|
adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1
 |