From 8622152cebfcfd753eaa7f6616f311e15ed7a66d Mon Sep 17 00:00:00 2001 From: "javier.legido" Date: Sat, 3 Oct 2020 11:29:37 +0200 Subject: [PATCH] Install alpine package 'tzdata' to allow passing timezone as environment variable: '-e TZ=foo/bar' --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 60306ea..b431222 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.12 LABEL maintainer "Fco. Javier Delgado del Hoyo " -RUN apk add --update bash mysql-client gzip openssl && rm -rf /var/cache/apk/* +RUN apk add --update tzdata bash mysql-client gzip openssl && rm -rf /var/cache/apk/* ARG OS=alpine-linux ARG ARCH=amd64