From 68f1715ba5c1e384160b74e7ee6d3f9008bb5a37 Mon Sep 17 00:00:00 2001 From: Lasse Bidstrup Lauritsen Date: Wed, 22 Nov 2023 11:25:02 +0100 Subject: [PATCH] Added more debugging tools --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74fd4c0..81057c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,9 @@ 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 mtr telnet traceroute; apt clean -RUN pip3 install azure-storage-blob azure-identity azure-cli==${AZ_CLI_VERSION} +RUN apt update -y; apt install -y vim netcat-openbsd curl wget bind9-host bind9-dnsutils python3 python3-pip npm libssl-dev postgresql-client mtr telnet traceroute tcpdump; apt clean +RUN pip3 install websocket-client azure-storage-blob azure-identity azure-cli==${AZ_CLI_VERSION} +RUN npm install -g wscat USER 10001:30001 ENTRYPOINT ["tail", "-f", "/dev/null"]