aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-10-26 11:19:05 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-10-26 11:35:30 +0200
commit25944e2089d89830d630efae0e4c3042069f64f2 (patch)
tree29973ba92ace4789b2d9acfa913254404a175e3d /Dockerfile
parent542379726789720c569d7130567068f40d03ac6f (diff)
Fixed some SonarCloud issues
* fixed dependabot werkzeug (3.0.3 to 3.0.6) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index d5f42a670..b79579498 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,9 @@
FROM ubuntu:22.04 AS builder
WORKDIR /root
-RUN apt-get -y update && apt-get install -y --no-install-recommends autoconf automake build-essential ca-certificates wget unzip git make cmake pkg-config libpcap-dev autoconf libtool && apt-get clean
+RUN apt-get -y update && apt-get install -y --no-install-recommends \
+ autoconf automake build-essential ca-certificates cmake git \
+ libpcap-dev libtool make pkg-config unzip wget && apt-get clean
RUN git clone https://github.com/utoni/nDPId.git
WORKDIR /root/nDPId