Fix install of tzdata and configure timezone for ubuntu 18.04

This commit is contained in:
Thomas Lauf 2019-01-07 06:56:24 +01:00
parent 62dd70f999
commit ba18e10326

View file

@ -1,10 +1,17 @@
FROM ubuntu:18.04 FROM ubuntu:18.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update RUN apt-get update
RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime RUN apt-get install -y build-essential cmake git uuid-dev libgnutls28-dev libfaketime
RUN apt-get install -y python RUN apt-get install -y python
RUN apt-get install -y tzdata
RUN apt-get install -y python-dateutil RUN apt-get install -y python-dateutil
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime
RUN dpkg-reconfigure -f noninteractive tzdata
# Setup language environment # Setup language environment
ENV LC_ALL en_US.UTF-8 ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8 ENV LANG en_US.UTF-8