Files
wazuh-docker-mirror/indexer-certs-creator/Dockerfile
2025-09-26 12:14:09 -03:00

12 lines
242 B
Docker

# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
FROM amazonlinux:2023
RUN yum update -y && yum install openssl curl-minimal -y
WORKDIR /
COPY config/entrypoint.sh /
RUN chmod 700 /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]