mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-23 04:51:57 +00:00
17 lines
373 B
Docker
17 lines
373 B
Docker
# Wazuh App Copyright (C) 2018 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"]
|
|
|
|
ENTRYPOINT /entrypoint.sh
|