mirror of
				https://github.com/wazuh/wazuh-docker.git
				synced 2025-11-03 21:43:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			420 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			420 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Wazuh Docker Copyright (C) 2019 Wazuh Inc. (License GPLv2)
 | 
						|
FROM nginx:latest
 | 
						|
 | 
						|
ENV DEBIAN_FRONTEND noninteractive
 | 
						|
 | 
						|
RUN apt-get update && apt-get install -y openssl apache2-utils
 | 
						|
 | 
						|
COPY config/entrypoint.sh /entrypoint.sh
 | 
						|
 | 
						|
RUN chmod 755 /entrypoint.sh
 | 
						|
 | 
						|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 | 
						|
 | 
						|
VOLUME ["/etc/nginx/conf.d"]
 | 
						|
 | 
						|
ENV NGINX_NAME="foo" \
 | 
						|
    NGINX_PWD="bar"
 | 
						|
 | 
						|
ENTRYPOINT /entrypoint.sh
 |