diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-10-16 16:45:46 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-10-16 16:49:30 +0200 |
commit | d29efd4d7ce1cdb4b54aec2450dd4801729afd07 (patch) | |
tree | 365c31707691912c6530c57a91ab772efc4c8738 | |
parent | 44adfc0b7d1badd0dd9ed83da3a94477e53203a3 (diff) |
Docker: Switched from Ubuntu 22.10 to 22.04 LTS.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 7cff2d0db..f9e8f224f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.10 as builder +FROM ubuntu:22.04 as builder WORKDIR /root RUN env DEBIAN_FRONTEND=noninteractive apt-get -y update && apt-get install -y wget unzip git make cmake pkg-config libpcap-dev autoconf libtool @@ -6,7 +6,7 @@ RUN env DEBIAN_FRONTEND=noninteractive apt-get -y update && apt-get install -y w RUN git clone https://github.com/utoni/nDPId.git RUN cd nDPId && mkdir -p build && cd build && cmake .. -DBUILD_NDPI=ON && make -FROM ubuntu:22.10 +FROM ubuntu:22.04 WORKDIR /root RUN apt-get -y update && apt-get -y install libpcap-dev |