1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-01 03:01:29 +00:00
dockerfiles/snort/arm/Dockerfile

16 lines
251 B
Docker
Raw Normal View History

2018-08-26 10:35:49 +00:00
#
# Dockerfile for snort-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache snort \
&& mkdir -p /usr/local/lib/snort_dynamicrules
COPY data /etc/snort
ENTRYPOINT ["snort"]
CMD ["--help"]