tpotce/docker/suricata/Dockerfile

37 lines
1.1 KiB
Text
Raw Normal View History

FROM alpine:latest
2019-06-07 13:00:20 +00:00
#
# Include dist
ADD dist/ /root/dist/
2019-06-07 13:00:20 +00:00
#
# Install packages
2020-05-12 09:19:09 +00:00
RUN sed -i 's/dl-cdn/dl-2/g' /etc/apk/repositories && \
apk -U --no-cache add \
ca-certificates \
curl \
file \
libcap \
wget && \
apk -U add --repository http://dl-cdn.alpinelinux.org/alpine/edge/community \
suricata && \
2019-06-07 13:00:20 +00:00
#
# Setup user, groups and configs
addgroup -g 2000 suri && \
adduser -S -H -u 2000 -D -g 2000 suri && \
chmod 644 /etc/suricata/*.config && \
cp /root/dist/suricata.yaml /etc/suricata/suricata.yaml && \
cp /root/dist/*.bpf /etc/suricata/ && \
2019-06-07 13:00:20 +00:00
#
# Download the latest EmergingThreats ruleset, replace rulebase and enable all rules
cp /root/dist/update.sh /usr/bin/ && \
chmod 755 /usr/bin/update.sh && \
update.sh OPEN && \
2019-06-07 13:00:20 +00:00
#
# Clean up
rm -rf /root/* && \
2019-10-22 15:20:23 +00:00
rm -rf /tmp/* && \
rm -rf /var/cache/apk/*
2019-06-07 13:00:20 +00:00
#
# Start suricata
2018-09-11 12:19:26 +00:00
STOPSIGNAL SIGINT
CMD SURICATA_CAPTURE_FILTER=$(update.sh $OINKCODE) && exec suricata -v -F $SURICATA_CAPTURE_FILTER -i $(/sbin/ip address | grep '^2: ' | awk '{ print $2 }' | tr -d [:punct:])