From 29fe7f88d8e84465f3ea3882173385625b07a95b Mon Sep 17 00:00:00 2001 From: duyhenryer Date: Fri, 26 Jan 2024 15:46:39 +0700 Subject: [PATCH] Add more tools --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index 67ca984..94e4c96 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,19 @@ LABEL version="1.0" WORKDIR /workspace +# timezone support +ENV TZ=UTC +RUN apk add --update tzdata --no-cache &&\ + cp /usr/share/zoneinfo/${TZ} /etc/localtime &&\ + echo $TZ > /etc/timezone + RUN apk add --no-cache --update \ bash \ conntrack-tools \ coreutils \ curl \ + jq \ + yq \ nano \ drill \ iperf3 \ @@ -28,5 +36,6 @@ RUN apk add --no-cache --update \ tcpdump \ tcptraceroute \ traceroute \ + bind-tools \ busybox-extras \ lz4 zstd \ No newline at end of file