From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [182.2.72.31]) by gnuweeb.org (Postfix) with ESMTPSA id 865C27E7D1; Sat, 30 Apr 2022 17:08:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1651338533; bh=rKj8CcKzvCf2lzzBKiojUy6d0uQZ8FXT+LcTBpixiyY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BfbV59dLRIlOHsp1hAq9nMQX9052KRMilxpV4JDqHA/im//qFAs/gwqYZkgvrOqSt FcD/eWJkStIFjd+bAFJfKtDuZnDFHBR1TqOXyNCW6ZACU2If6wHN2AhVGVO5c7wg5g FuN57saeDOiZvqdXvdNsYPWnUnPP/eykCphG6xa09AVZhRkGccD4Ox2ZeipJ+WD7Ah Pp7RrWmDv+q/uECbIob7gIGhY47+aGMlSIiEB9ia31S/d9DviRof0CL5M6bB7oND1u Z+OBvU4B2490uPeWetFl0cFquqcpCGllc7ffltC4+blen+RPUy65f/k+T463Q2FBRO U8eVb4+EvOoZg== From: Ammar Faizi To: Hazmi Alfarizqi , GNU/Weeb Mailing List Cc: Ammar Faizi , Hazmi Alfarizqi , Alviro Iskandar Setiawan Subject: [PATCH server-a001 v2 1/4] Install net-tools Date: Sun, 1 May 2022 00:08:35 +0700 Message-Id: <20220430170838.19571-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220430170838.19571-1-ammarfaizi2@gnuweeb.org> References: <20220430170838.19571-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Install networking tools like netstat and ifconfig. We will often use them to inspect and troubleshoot network problem. Link: https://lore.gnuweeb.org/gwml/20220417125125.160068-2-ammarfaizi2@gnuweeb.org Reviewed-by: Alviro Iskandar Setiawan Reviewed-by: Hazmi Alfarizqi Signed-off-by: Ammar Faizi --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e59701..7d78c86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN yes | unminimize # Install base packages -RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates gnupg htop ncurses-term vim software-properties-common sudo wget +RUN apt-get update && apt-get -y --no-install-recommends install ca-certificates gnupg htop ncurses-term vim software-properties-common sudo wget net-tools # Change root password, and create main user RUN echo "root:${rootPassword}" | chpasswd \ -- Ammar Faizi