1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/snort/arm/Dockerfile
2020-08-14 11:26:15 +08:00

16 lines
250 B
Docker

#
# Dockerfile for snort-arm
#
FROM arm32v7/alpine:3
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"]