From e1605e0cce9ee4f1317289a838381fead603d4c1 Mon Sep 17 00:00:00 2001 From: kev Date: Sat, 6 May 2023 17:25:40 +0800 Subject: [PATCH] update ntopng --- ntopng/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ntopng/Dockerfile b/ntopng/Dockerfile index f541286..fee68bc 100644 --- a/ntopng/Dockerfile +++ b/ntopng/Dockerfile @@ -8,10 +8,10 @@ MAINTAINER EasyPi Software Foundation RUN set -xe \ && apt update \ && apt install -y curl gnupg libjson-c3 \ - && curl -sSL http://packages.ntop.org/apt-stable/ntop.key | apt-key add - \ + && curl -sSL https://packages.ntop.org/apt-stable/ntop.key | apt-key add - \ && { \ - echo "deb http://packages.ntop.org/apt/22.04/ x64/"; \ - echo "deb http://packages.ntop.org/apt/22.04/ all/"; \ + echo "deb https://packages.ntop.org/apt-stable/22.04/ x64/"; \ + echo "deb https://packages.ntop.org/apt-stable/22.04/ all/"; \ } > /etc/apt/sources.list.d/ntop.list \ && apt update \ && apt install -y ntopng \