mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
16 lines
251 B
Docker
16 lines
251 B
Docker
#
|
|
# 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"]
|