From 857d89d26a98463a08a636fd5c7f70beff7a7168 Mon Sep 17 00:00:00 2001 From: Gabriele De Rosa <4183824+derogab@users.noreply.github.com> Date: Sun, 31 Oct 2021 02:48:30 +0100 Subject: [PATCH] Add tzdata --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 536657b..d134e23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,13 +5,14 @@ WORKDIR /usr/src/app # Install dependencies RUN apk update \ - # Set UTC as timezone - && ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \ # Install packages && apk add \ + tzdata \ build-base freetype-dev libpng-dev openblas-dev \ python3 py3-pip py3-numpy py3-pandas py3-matplotlib \ wkhtmltopdf \ + # Set UTC as timezone + && ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \ # Remove tmp files && rm -rf /tmp/* /var/tmp/* \ # Add PiWheels support