forked from wazuh/wazuh-docker
12 lines
234 B
Docker
12 lines
234 B
Docker
# Wazuh Docker Copyright (C) 2021 Wazuh Inc. (License GPLv2)
|
|
FROM ubuntu:focal
|
|
|
|
RUN apt-get update && apt-get install openssl curl -y
|
|
|
|
WORKDIR /
|
|
|
|
COPY config/entrypoint.sh /
|
|
|
|
RUN chmod 700 /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |