From cecc86da35d3485cdb3e49c2a0466656ed250b15 Mon Sep 17 00:00:00 2001 From: kev Date: Fri, 26 Oct 2018 07:23:14 +0800 Subject: [PATCH] upgrade snort to 2.9.12 --- snort/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snort/Dockerfile b/snort/Dockerfile index c3472f0..f0e82f3 100644 --- a/snort/Dockerfile +++ b/snort/Dockerfile @@ -6,13 +6,14 @@ FROM centos:7 MAINTAINER kev ENV DAQ_VERSION 2.0.6 -ENV SNORT_VERSION 2.9.11.1 +ENV SNORT_VERSION 2.9.12 ENV BASE_URL https://www.snort.org/downloads RUN set -xe \ && yum -y install epel-release libdnet \ && yum -y install ${BASE_URL}/snort/daq-${DAQ_VERSION}-1.centos7.x86_64.rpm \ ${BASE_URL}/snort/snort-${SNORT_VERSION}-1.centos7.x86_64.rpm \ + && mkdir -p /etc/snort/rules \ && curl -sSL ${BASE_URL}/community/community-rules.tar.gz | \ tar xz --strip 1 -C /etc/snort/rules/ community-rules/community.rules \ && touch /etc/snort/rules/local.rules \