You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by dp...@apache.org on 2018/05/20 15:49:30 UTC

[46/50] logging-log4net git commit: Set the timezone also for the mono-3.5 and mono-4.0 builders

Set the timezone also for the mono-3.5 and mono-4.0 builders


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/da0cbcf3
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/da0cbcf3
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/da0cbcf3

Branch: refs/heads/feature/RollingFileAppender-NG
Commit: da0cbcf3508bcfb190f4aa9d74c5c8bf9a6d07d2
Parents: 3223ccb
Author: Dominik Psenner <dp...@apache.org>
Authored: Fri May 11 22:22:09 2018 +0200
Committer: Dominik Psenner <dp...@apache.org>
Committed: Fri May 11 22:22:09 2018 +0200

----------------------------------------------------------------------
 buildtools/docker/builder-mono-3.5/Dockerfile | 4 ++++
 buildtools/docker/builder-mono-4.0/Dockerfile | 4 ++++
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/da0cbcf3/buildtools/docker/builder-mono-3.5/Dockerfile
----------------------------------------------------------------------
diff --git a/buildtools/docker/builder-mono-3.5/Dockerfile b/buildtools/docker/builder-mono-3.5/Dockerfile
index 709f0fd..3dd081f 100644
--- a/buildtools/docker/builder-mono-3.5/Dockerfile
+++ b/buildtools/docker/builder-mono-3.5/Dockerfile
@@ -4,6 +4,10 @@ FROM ubuntu:latest
 # set the maintainer of this docker image
 MAINTAINER "dev@logging.apache.org"
 
+# set the timezone
+RUN ln -fs /usr/share/zoneinfo/Universal /etc/localtime
+RUN echo "Universal" > /etc/timezone
+
 # install nant
 RUN apt-get update && apt-get install -y nant git mono-complete mono-reference-assemblies-2.0 mono-reference-assemblies-3.5
 

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/da0cbcf3/buildtools/docker/builder-mono-4.0/Dockerfile
----------------------------------------------------------------------
diff --git a/buildtools/docker/builder-mono-4.0/Dockerfile b/buildtools/docker/builder-mono-4.0/Dockerfile
index 28bd0e0..9c26bbf 100644
--- a/buildtools/docker/builder-mono-4.0/Dockerfile
+++ b/buildtools/docker/builder-mono-4.0/Dockerfile
@@ -4,6 +4,10 @@ FROM ubuntu:latest
 # set the maintainer of this docker image
 MAINTAINER "dev@logging.apache.org"
 
+# set the timezone
+RUN ln -fs /usr/share/zoneinfo/Universal /etc/localtime
+RUN echo "Universal" > /etc/timezone
+
 # install nant
 RUN apt-get update && apt-get install -y nant git mono-complete mono-reference-assemblies-4.0