ndpi: use both dev branch and 1.7 (#2)
All checks were successful
continuous-integration/drone/push Build is passing

have a more recent version of nDPI available

keep 1.7 for backward compatibility (until it's not needed) but also include a build from the dev branch (this might even be unstable at times)

Reviewed-on: #2
Co-authored-by: wanderer <wanderer@noreply.git.dotya.ml>
Co-committed-by: wanderer <wanderer@noreply.git.dotya.ml>
This commit is contained in:
wanderer 2021-05-07 04:15:05 +02:00
parent 31220d9c1b
commit 81860b9567
Signed by: Gitea
GPG Key ID: 0DD13DBC6B5433D3

@ -53,7 +53,13 @@ RUN bash -c 'export MAKEFLAGS="$MAKEFLAGS -j$(nproc)" && printf "$MAKEFLAGS\n";
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin:$PATH"; \
git clone https://github.com/ntop/nDPI.git /tmp/nDPI && \
cd /tmp/nDPI ; \
git checkout 1.7 && \
git checkout 1.7; \
./autogen.sh && \
./configure && \
make && \
make install && \
make clean && \
git switch - ; \
./autogen.sh && \
./configure && \
make && \