From e719a679f8913995803268899ceb8b76e2763423 Mon Sep 17 00:00:00 2001 From: erikswets Date: Tue, 6 Dec 2016 11:45:14 +0100 Subject: [PATCH] Set the correct timezone in the container --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4f561d8..2d2326a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,10 @@ RUN apk add --update jq make git curl openssl-dev libffi-dev musl-dev gcc python rm -f terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ apk del openssl-dev libffi-dev musl-dev gcc python-dev py-pip +# Set the correct timezone +RUN apk add -U tzdata +RUN cp /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime + # Switch back to non-privileged Jenkins user USER jenkins