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 [36.80.217.41]) by gnuweeb.org (Postfix) with ESMTPSA id A498E7E3C0; Sun, 17 Apr 2022 12:51:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1650199896; bh=Kg1cspX2JeM+is1LGrqzR9aErY3tPb/baa1eQNx6mf4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LhvlYXNo1wODe3CNzDPLpLVK0dwBtV/GXUGVsh4G0u/RZ/MBCkElOt2PyZ6prSdvG y53+TujIYdZiNxCbwWRvx0Wek1mKeAvAlEyC2oEFC2alG+dTrDTusJVa2eQMTMbSY/ yuZMhvkugqRbMM18MtnadiPJwFWBpz5YXZoVAeo5Dnzlm0LSgtV4yuyEKxXNYUDiHO FpsZvrb8dIQiKCtpe7uDxsZHKVMaHRf3eR0xAcW7GL0rn9zLOsD4opWL66JwrnsFCJ uyu5fkFRCci/WHzZQNJdYdtf2UK6qer8ofmT+eYUp3Yv89lAad8P+brmdO882GP2Ye hXXLErqGGZzyg== From: Ammar Faizi To: GNU/Weeb Mailing List Cc: Ammar Faizi , Hazmi Alfarizqi , Hazmi Alfarizqi , Alviro Iskandar Setiawan Subject: [PATCH server-a001 v1 1/2] Install net-tools Date: Sun, 17 Apr 2022 19:51:24 +0700 Message-Id: <20220417125125.160068-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220417125125.160068-1-ammarfaizi2@gnuweeb.org> References: <20220417125125.160068-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. 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