From 2418d6f51aded89eade5bc4adba8de710e91a940 Mon Sep 17 00:00:00 2001 From: Thomas Lauf Date: Mon, 7 Jan 2019 07:01:08 +0100 Subject: [PATCH] Apply ubuntu-fix to debian --- test/docker/debianstable | 8 ++++++++ test/docker/debiantesting | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/test/docker/debianstable b/test/docker/debianstable index 272011b6..80607958 100644 --- a/test/docker/debianstable +++ b/test/docker/debianstable @@ -1,9 +1,17 @@ FROM debian:stable +ENV DEBIAN_FRONTEND noninteractive + RUN apt-get update 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 tzdata +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 ENV LC_ALL en_US.UTF-8 ENV LANG en_US.UTF-8 diff --git a/test/docker/debiantesting b/test/docker/debiantesting index 742c50d9..360390d7 100644 --- a/test/docker/debiantesting +++ b/test/docker/debiantesting @@ -1,9 +1,17 @@ FROM debian:testing +ENV DEBIAN_FRONTEND noninteractive + RUN apt-get update 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 tzdata +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 ENV LC_ALL en_US.UTF-8 ENV LANG en_US.UTF-8