From 8c339f0bed31537a9d9a1b3764357ed4b40f7e62 Mon Sep 17 00:00:00 2001 From: Andreas Toftegaard Date: Thu, 19 Oct 2023 09:32:22 +0200 Subject: [PATCH] Add mtr, telnet and traceroute --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3849197..74fd4c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG AZ_CLI_VERSION=2.40.0 RUN useradd -u 10001 scratchuser RUN groupadd -g 30001 debuggroup -RUN apt update -y; apt install -y vim netcat-openbsd curl wget bind9-host bind9-dnsutils python3 python3-pip postgresql-client; apt clean +RUN apt update -y; apt install -y vim netcat-openbsd curl wget bind9-host bind9-dnsutils python3 python3-pip postgresql-client mtr telnet traceroute; apt clean RUN pip3 install azure-storage-blob azure-identity azure-cli==${AZ_CLI_VERSION} USER 10001:30001