mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
4617918cbd
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
47 lines
975 B
Docker
47 lines
975 B
Docker
# Usage:
|
|
# docker run -d \
|
|
# --name=opensnitchd \
|
|
# --net host \
|
|
# --cap-add NET_ADMIN \
|
|
# r.j3ss.co/opensnitchd
|
|
#
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
iptables \
|
|
libcap \
|
|
libnetfilter_queue \
|
|
libnfnetlink \
|
|
python3 \
|
|
py3-gobject3 \
|
|
py3-inotify \
|
|
py3-qt5 \
|
|
tcpdump \
|
|
--repository https://dl-3.alpinelinux.org/alpine/edge/testing
|
|
|
|
ENV XTABLES_LIBDIR "/usr/lib/xtables"
|
|
ENV OPENSNITCH_VERSION master
|
|
|
|
RUN buildDeps=' \
|
|
build-base \
|
|
git \
|
|
libc-dev \
|
|
libcap-dev \
|
|
libnetfilter_queue-dev \
|
|
libnfnetlink-dev \
|
|
musl-dev \
|
|
python3-dev \
|
|
' \
|
|
set -x \
|
|
&& apk --no-cache add $buildDeps \
|
|
&& git clone --depth 1 --branch ${OPENSNITCH_VERSION} https://github.com/evilsocket/opensnitch.git /usr/src/opensnitch \
|
|
&& ( \
|
|
cd /usr/src/opensnitch \
|
|
&& python3 setup.py install \
|
|
&& rm -rf /usr/src/opensnitch \
|
|
) \
|
|
&& apk del $buildDeps \
|
|
&& echo "Build complete."
|
|
|
|
ENTRYPOINT ["/usr/bin/opensnitchd", "--debug"]
|