Add tzdata

This commit is contained in:
Gabriele De Rosa 2021-10-31 02:48:30 +01:00
parent 33326e3a5b
commit 857d89d26a
1 changed files with 3 additions and 2 deletions

View File

@ -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