diff options
Diffstat (limited to 'ubuntu/bionic')
-rw-r--r-- | ubuntu/bionic/Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ubuntu/bionic/Dockerfile b/ubuntu/bionic/Dockerfile index 1cf9ff6..d5f8591 100644 --- a/ubuntu/bionic/Dockerfile +++ b/ubuntu/bionic/Dockerfile @@ -20,11 +20,12 @@ RUN set -x \ && apt-get update -q \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +ENV TZ="Europe/Vienna" RUN set -x \ && echo "de_AT.UTF-8 UTF-8\nen_US.UTF-8 UTF-8" > /etc/locale.gen \ && locale-gen \ - && echo "Europe/Vienna" > /etc/timezone \ - && dpkg-reconfigure -f noninteractive tzdata + && ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ + && echo ${TZ} > /etc/timezone COPY common/bin/tini /usr/local/bin/ |