1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/snort/Dockerfile
2015-09-03 10:08:27 +08:00

56 lines
1.9 KiB
Docker

#
# Dockerfile for snort
#
FROM debian:jessie
MAINTAINER kev <noreply@datageek.info>
RUN apt-get update \
&& apt-get install -y build-essential \
bison \
curl \
flex \
libdnet \
libdnet-dev \
libpcap0.8 \
libpcap-dev \
libpcre3 \
libpcre3-dev \
zlib1g \
zlib1g-dev \
&& mkdir daq \
&& curl -sSL https://snort.org/downloads/snort/daq-2.0.6.tar.gz | tar xz --strip 1 -C daq \
&& cd daq \
&& ./configure \
&& make install \
&& cd .. \
&& rm -rf daq \
&& mkdir libdnet \
&& curl -sSL https://github.com/dugsong/libdnet/archive/libdnet-1.12.tar.gz | tar xz --strip 1 -C libdnet \
&& cd libdnet \
&& ./configure \
&& make install \
&& (cd /usr/local/lib && ln -s libdnet.1 libdnet.so.1) \
&& cd .. \
&& rm -rf libdnet \
&& mkdir snort \
&& curl -sSL https://snort.org/downloads/snort/snort-2.9.7.5.tar.gz | tar xz --strip 1 -C snort \
&& cd snort \
&& ./configure --enable-sourcefire \
&& make install \
&& cd .. \
&& rm -rf snort \
&& mkdir -p /etc/snort/rules \
&& curl -sSL https://snort.org/rules/community | tar xz -C /etc/snort/rules \
&& apt-get purge -y --auto-remove build-essential \
bison \
flex \
libdnet-dev \
libpcap-dev \
libpcre3-dev \
zlib1g-dev
ENTRYPOINT ["snort"]
CMD ["--help"]