From 0800461a3fe33c0359a9d0ab37d5f495854dff42 Mon Sep 17 00:00:00 2001 From: Ameer Hamza Date: Mon, 11 Dec 2023 11:56:25 +0800 Subject: [PATCH] Also added symlinks for /etc/localtime --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1875a70..01e6bec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,9 @@ RUN apt install -y net-tools iputils-ping tcpdump traceroute iproute2 iptables i RUN apt install -y software-properties-common -RUN apt install -y tzdata +RUN apt install -y tzdata && \ + ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \ + dpkg-reconfigure --frontend noninteractive tzdata # Installing locales RUN apt install -y locales