mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-23 06:11:57 +00:00
12 lines
235 B
Docker
12 lines
235 B
Docker
# Wazuh Docker Copyright (C) 2017, 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"] |