Update Dockerfile

This commit is contained in:
Brett 2021-05-11 14:19:33 +02:00
parent 15bc5a4c85
commit 751229fcfa

View File

@ -5,7 +5,7 @@ LABEL maintainer="brett@kowh.ai"
# Set timezone # Set timezone
RUN TZ=UTC RUN TZ=UTC
RUN echo $TZ > /etc/timezone RUN echo $TZ > /etc/timezone
RUN echo $TZ RUN cat /etc/timezone
RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \ RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \
cp /usr/share/zoneinfo/${TZ} /etc/localtime ;\ cp /usr/share/zoneinfo/${TZ} /etc/localtime ;\
fi ; fi ;