From 06a45fe1df0c325006d8edde1cf9dd67e4887052 Mon Sep 17 00:00:00 2001 From: balll Date: Sat, 26 Sep 2020 03:36:29 +0700 Subject: [PATCH] Added support for timezone via env variable We can specify timezone in the environment variable like `-e TZ=Asia/Bangkok` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ca4b24f..e2a226a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG BUILD_FROM=alpine:latest FROM $BUILD_FROM -RUN apk --update --no-cache add bash nfs-utils && \ +RUN apk --update --no-cache add bash nfs-utils tzdata && \ \ # remove the default config files rm -v /etc/idmapd.conf /etc/exports