Add tzdata
This commit is contained in:
parent
33326e3a5b
commit
857d89d26a
|
@ -5,13 +5,14 @@ WORKDIR /usr/src/app
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN apk update \
|
RUN apk update \
|
||||||
# Set UTC as timezone
|
|
||||||
&& ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \
|
|
||||||
# Install packages
|
# Install packages
|
||||||
&& apk add \
|
&& apk add \
|
||||||
|
tzdata \
|
||||||
build-base freetype-dev libpng-dev openblas-dev \
|
build-base freetype-dev libpng-dev openblas-dev \
|
||||||
python3 py3-pip py3-numpy py3-pandas py3-matplotlib \
|
python3 py3-pip py3-numpy py3-pandas py3-matplotlib \
|
||||||
wkhtmltopdf \
|
wkhtmltopdf \
|
||||||
|
# Set UTC as timezone
|
||||||
|
&& ln -snf /usr/share/zoneinfo/Europe/Rome /etc/localtime \
|
||||||
# Remove tmp files
|
# Remove tmp files
|
||||||
&& rm -rf /tmp/* /var/tmp/* \
|
&& rm -rf /tmp/* /var/tmp/* \
|
||||||
# Add PiWheels support
|
# Add PiWheels support
|
||||||
|
|
Loading…
Reference in New Issue