Skip to content

Commit

Permalink
Merge pull request #4 from dpisano/2.5
Browse files Browse the repository at this point in the history
Bro 2.5
  • Loading branch information
dpisano committed Nov 19, 2016
2 parents 1ca2a7d + 49402e5 commit 0e487c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bro Sandbox - Bro 2.4.1
# Bro Sandbox - Bro 2.5
#
# VERSION 1.0
FROM debian
Expand All @@ -14,7 +14,7 @@ ENV PROG bro
# Specify source extension
ENV EXT tar.gz
# Specify Bro version to download and install (e.g. bro-2.3.1, bro-2.4)
ENV VERS 2.4.1
ENV VERS 2.5
# Install directory
ENV PREFIX /opt/bro
# Path should include prefix
Expand All @@ -27,7 +27,7 @@ RUN groupadd -r $VIRTUSER && \
WORKDIR /home/$VIRTUSER
RUN apt-get update -qq && \
apt-get install -yq build-essential cmake make gcc g++ flex bison libpcap-dev libgeoip-dev libssl-dev python-dev zlib1g-dev libmagic-dev swig2.0 ca-certificates supervisor wget --no-install-recommends && \
wget --no-check-certificate https://www.bro.org/downloads/release/$PROG-$VERS.$EXT && \
wget --no-check-certificate https://www.bro.org/downloads/$PROG-$VERS.$EXT && \
tar -xzf $PROG-$VERS.$EXT && \
rm -rf /home/$VIRTUSER/$PROG-$VERS.$EXT && \
cd /home/$VIRTUSER/$PROG-$VERS && \
Expand Down

0 comments on commit 0e487c4

Please sign in to comment.