From 17d305f03c18a13fde07424fd08d941e79876a88 Mon Sep 17 00:00:00 2001 From: giraldo925 <39535038+giraldo925@users.noreply.github.com> Date: Fri, 24 Aug 2018 11:24:16 -0400 Subject: [PATCH] Update Dockerfile --- container/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index ec67fe3..a30fae4 100755 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -4,16 +4,16 @@ FROM centos:latest RUN yum -y install epel-release RUN yum -y update && \ yum -y install sudo supervisor git cmake make gcc gcc-c++ flex bison libpcap-devel openssl-devel python-devel swig zlib-devel GeoIP-devel libpcap gperftools vim-minimal wget kernel-headers kernel-devel kernel hiredis-devel -RUN wget https://www.bro.org/downloads/bro-2.5.tar.gz && \ - tar xzf bro-2.5.tar.gz && \ - cd bro-2.5 && \ +RUN wget https://www.bro.org/downloads/bro-2.5.4.tar.gz && \ + tar xzf bro-2.5.4.tar.gz && \ + cd bro-2.5.4 && \ #split the configure and make \ ./configure && \ make install -RUN cd /bro-2.5/aux/plugins && \ +RUN cd /bro-2.5.4/aux/plugins && \ make build-redis && \ - cd /bro-2.5/aux/plugins/redis && \ + cd /bro-2.5.4/aux/plugins/redis && \ ./configure && \ make && \ make install && \ @@ -24,7 +24,7 @@ RUN yum upgrade RUN yum -y install --enablerepo=C7.3.1611-base "kernel-devel-uname-r == $(uname -r)" && \ git clone https://github.com/J-Gras/bro-af_packet-plugin.git && \ cd bro-af_packet-plugin && \ - ./configure --bro-dist=/bro-2.5 && \ + ./configure --bro-dist=/bro-2.5.4 && \ make && \ make install && \ yum -y clean all