1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/snort/arm/Dockerfile

16 lines
250 B
Docker
Raw Normal View History

2018-08-26 12:35:49 +02:00
#
# Dockerfile for snort-arm
#
2020-08-14 05:26:15 +02:00
FROM arm32v7/alpine:3
2018-08-26 12:35:49 +02:00
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"]