From 5db55032b7057a2c68e1f99c22564dc3797c2e67 Mon Sep 17 00:00:00 2001 From: Manuel Gutierrez Date: Thu, 23 Jan 2020 15:35:53 +0100 Subject: [PATCH] Add which command (required by manager) --- wazuh/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wazuh/Dockerfile b/wazuh/Dockerfile index 1d0397f5..e4ce18b4 100644 --- a/wazuh/Dockerfile +++ b/wazuh/Dockerfile @@ -16,7 +16,7 @@ RUN rpm --import https://packages.wazuh.com/key/GPG-KEY-WAZUH COPY config/wazuh.repo /etc/yum.repos.d/wazuh.repo RUN yum --enablerepo=updates clean metadata && \ - yum -y install openssl && yum -y install wazuh-manager-${WAZUH_VERSION} -y && \ + yum -y install openssl which && yum -y install wazuh-manager-${WAZUH_VERSION} -y && \ curl --silent --location https://rpm.nodesource.com/setup_10.x | bash - && \ yum -y install nodejs && yum -y install wazuh-api-${WAZUH_VERSION} && \ sed -i "s/^enabled=1/enabled=0/" /etc/yum.repos.d/wazuh.repo && \