Skip to content

Commit 666bdd7

Browse files
committed
Version 4
1 parent 19facd9 commit 666bdd7

30 files changed

+97
-2061
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM python:3.9-slim-buster
22

3-
RUN apt-get update;
3+
RUN apt-get update && apt-get upgrade;
44
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y autotools-dev autoconf make flex byacc git libtool pkg-config libbz2-dev tshark
55

66
# Install nfdump
77
RUN git clone https://github.com/phaag/nfdump.git /app/nfdump
88
WORKDIR /app/nfdump
9-
RUN ./autogen.sh; ./configure; make; make install
9+
RUN ./autogen.sh && ./configure && make && make install && ldconfig
1010

1111
# Install dissector dependencies
1212
COPY requirements.txt /app
@@ -15,4 +15,4 @@ RUN pip install -r /app/requirements.txt
1515
COPY . /app
1616
WORKDIR /app
1717

18-
ENTRYPOINT ["python", "./dissector/Dissector.py"]
18+
ENTRYPOINT ["python", "./src/main.py"]

README.md

+78-251
Large diffs are not rendered by default.
File renamed without changes.

0 commit comments

Comments
 (0)