added missing timezone

This commit is contained in:
Hendrik Behme 2019-08-27 15:00:41 +02:00
parent c54a656390
commit c8a4e9e99f

View File

@ -11,8 +11,11 @@ RUN pip3 install --upgrade pip
WORKDIR '/data/pm' 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 CMD python3 pollmaster.py