Repository: mesos
Updated Branches:
  refs/heads/master 77480819c -> 68e9bd439


Disabled caching during docker build of the website.

This is to avoid flaky docker build of website in CI. We did a similar
change to support/docker-build.sh.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/68e9bd43
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/68e9bd43
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/68e9bd43

Branch: refs/heads/master
Commit: 68e9bd439860802494045cf1b4f911ca06504a73
Parents: 7748081
Author: Vinod Kone <vinodk...@gmail.com>
Authored: Fri Aug 4 16:30:04 2017 -0700
Committer: Vinod Kone <vinodk...@gmail.com>
Committed: Fri Aug 4 16:31:12 2017 -0700

----------------------------------------------------------------------
 site/mesos-website-dev.sh | 2 +-
 support/mesos-website.sh  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/68e9bd43/site/mesos-website-dev.sh
----------------------------------------------------------------------
diff --git a/site/mesos-website-dev.sh b/site/mesos-website-dev.sh
index 96c82a8..2be99db 100755
--- a/site/mesos-website-dev.sh
+++ b/site/mesos-website-dev.sh
@@ -30,7 +30,7 @@ pushd "$MESOS_DIR"
 
 TAG=mesos/website-`date +%s`-$RANDOM
 
-docker build --no-cache=true -t $TAG site
+docker build -t $TAG site
 
 trap 'docker rmi $TAG' EXIT
 

http://git-wip-us.apache.org/repos/asf/mesos/blob/68e9bd43/support/mesos-website.sh
----------------------------------------------------------------------
diff --git a/support/mesos-website.sh b/support/mesos-website.sh
index ce416df..04a6646 100755
--- a/support/mesos-website.sh
+++ b/support/mesos-website.sh
@@ -28,7 +28,7 @@ pushd "$MESOS_DIR"
 
 TAG=mesos/website-`date +%s`-$RANDOM
 
-docker build -t $TAG support/mesos-website
+docker build --no-cache=true -t $TAG support/mesos-website
 
 trap 'docker rmi $TAG' EXIT
 

Reply via email to