forked from wazuh/wazuh-docker
12 lines
242 B
Docker
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"] |