mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-29 11:03:33 +00:00
20 lines
426 B
Docker
20 lines
426 B
Docker
# Wazuh Docker Copyright (C) 2020 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" ]
|