diff --git a/opensnitch/Dockerfile b/opensnitch/Dockerfile index 6fd6485..9574d3e 100644 --- a/opensnitch/Dockerfile +++ b/opensnitch/Dockerfile @@ -3,6 +3,7 @@ # -v /etc/localtime:/etc/localtime:ro \ # -v /tmp/.X11-unix:/tmp/.X11-unix \ # -e "DISPLAY=unix${DISPLAY}" \ +# -v /usr/share/X11:/usr/share/X11:ro \ # --net host \ # --cap-add NET_ADMIN \ # --name opensnitch \ diff --git a/opensnitchd/Dockerfile b/opensnitchd/Dockerfile index 02e74e8..efb8887 100644 --- a/opensnitchd/Dockerfile +++ b/opensnitchd/Dockerfile @@ -8,15 +8,16 @@ FROM alpine:latest RUN apk add --no-cache \ + bash \ iptables \ libcap \ libnetfilter_queue \ libnfnetlink \ python3 \ py3-gobject3 \ - py3-inotify \ py3-qt5 \ tcpdump \ + xtables-addons \ --repository https://dl-3.alpinelinux.org/alpine/edge/testing ENV XTABLES_LIBDIR "/usr/lib/xtables" @@ -25,11 +26,9 @@ ENV OPENSNITCH_VERSION master RUN buildDeps=' \ build-base \ git \ - libc-dev \ libcap-dev \ libnetfilter_queue-dev \ libnfnetlink-dev \ - musl-dev \ python3-dev \ ' \ set -x \