forked from wazuh/wazuh-docker
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"] |