update to debian

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2017-11-08 14:16:31 -05:00
parent 50fb485907
commit e2b4562abc
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 24 additions and 17 deletions

View File

@ -11,4 +11,4 @@
#
FROM r.j3ss.co/opensnitchd:latest
ENTRYPOINT ["/usr/bin/opensnitch-qt"]
ENTRYPOINT ["/usr/local/bin/opensnitch-qt"]

View File

@ -5,41 +5,48 @@
# --cap-add NET_ADMIN \
# r.j3ss.co/opensnitchd
#
FROM alpine:latest
FROM debian:sid
RUN apk add --no-cache \
bash \
RUN apt-get update && apt-get install -y \
ca-certificates \
iptables \
libcap \
libnetfilter_queue \
libnfnetlink \
libcap2 \
libnetfilter-queue1 \
libnfnetlink0 \
python3 \
py3-gobject3 \
py3-qt5 \
python3-dbus \
python3-dev \
python3-gi \
python3-pyinotify \
python3-pyqt5 \
python3-setuptools \
tcpdump \
xtables-addons \
--repository https://dl-3.alpinelinux.org/alpine/edge/testing
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENV XTABLES_LIBDIR "/usr/lib/xtables"
ENV OPENSNITCH_VERSION master
RUN buildDeps=' \
build-base \
git \
build-essential \
git \
libcap-dev \
libnetfilter_queue-dev \
libnetfilter-queue-dev \
libnfnetlink-dev \
python3-dev \
' \
set -x \
&& apk --no-cache add $buildDeps \
&& apt-get update && apt-get install -y \
$buildDeps \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& 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 \
&& apt-get purge -y $buildDeps \
&& echo "Build complete."
ENTRYPOINT ["/usr/bin/opensnitchd", "--debug"]
ENTRYPOINT ["/usr/local/bin/opensnitchd", "--debug"]