mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-11-02 21:13:14 +00:00
13 lines
243 B
Docker
13 lines
243 B
Docker
# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
|
|
FROM amazonlinux:2023
|
|
|
|
RUN yum install curl-minimal openssl -y &&\
|
|
yum clean all
|
|
|
|
WORKDIR /
|
|
|
|
COPY config/entrypoint.sh /
|
|
|
|
RUN chmod 700 /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |