From 44446ee1e784676da3f90febad7ceea8d9bd439a Mon Sep 17 00:00:00 2001 From: "Eli J. Rodriguez" Date: Tue, 3 Oct 2023 21:34:08 -0400 Subject: [PATCH 1/2] update wazuh_version --- wazuh/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wazuh/Dockerfile b/wazuh/Dockerfile index 6099a574..beb1cce0 100644 --- a/wazuh/Dockerfile +++ b/wazuh/Dockerfile @@ -3,7 +3,7 @@ FROM waystonesystems/baseimage-centos:0.2.0 # Arguments ARG FILEBEAT_VERSION=7.10.2 -ARG WAZUH_VERSION=4.4.5-0.debug +ARG WAZUH_VERSION=4.5.2-0.debug # Environment variables ENV API_USER="foo" \ From 11936e4a045e5bd2ac6ae038f3cad3abcb68914d Mon Sep 17 00:00:00 2001 From: "Eli J. Rodriguez" Date: Tue, 3 Oct 2023 21:51:04 -0400 Subject: [PATCH 2/2] update path for package --- wazuh/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wazuh/Dockerfile b/wazuh/Dockerfile index beb1cce0..8f573f90 100644 --- a/wazuh/Dockerfile +++ b/wazuh/Dockerfile @@ -19,7 +19,7 @@ RUN set -x && \ # Retrieve DEV package #curl -o /tmp/wazuh-manager-$WAZUH_VERSION.x86_64.rpm https://packages-dev.wazuh.com/pre-release/yum/wazuh-manager-$WAZUH_VERSION.x86_64.rpm && \ # Retrieve PROD package - curl -o /tmp/wazuh-manager-$WAZUH_VERSION.x86_64.rpm https://packages.wazuh.com/cloud/4.4.x/rpm/wazuh-manager-$WAZUH_VERSION.x86_64.rpm && \ + curl -o /tmp/wazuh-manager-$WAZUH_VERSION.x86_64.rpm https://packages.wazuh.com/cloud/4.5.x/rpm/wazuh-manager-$WAZUH_VERSION.x86_64.rpm && \ yum update -y && \ yum upgrade -y &&\ yum install -y openssl vim expect python-boto python-pip python-cryptography postfix bsd-mailx mailx ca-certificates && \