From c8a4e9e99f69842452db41de77eeb0de6716eec4 Mon Sep 17 00:00:00 2001 From: Hendrik Behme Date: Tue, 27 Aug 2019 15:00:41 +0200 Subject: [PATCH] added missing timezone --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9a0602d..d788a9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,11 @@ RUN pip3 install --upgrade pip WORKDIR '/data/pm' -RUN pip install pykg-config +RUN pip install pykg-config && pip install -r requirements.txt -RUN pip install -r requirements.txt +RUN apk add tzdata && \ + echo "Europe/Berlin" > /etc/timezone && \ + cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \ + apk del tzdata CMD python3 pollmaster.py \ No newline at end of file