Repository: mesos Updated Branches: refs/heads/master 1a013acf2 -> 5766058e7
Enabled '--no-cache' for docker images build on ASF CI. Docker images should be built with --no-cache=true flag to prevent outdated image layers. Review: https://reviews.apache.org/r/38650 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5766058e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5766058e Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5766058e Branch: refs/heads/master Commit: 5766058e74c391d79235d88b2c77d8ee05f0af98 Parents: 1a013ac Author: Isabel Jimenez <[email protected]> Authored: Wed Sep 23 09:53:21 2015 -0700 Committer: Vinod Kone <[email protected]> Committed: Wed Sep 23 09:53:21 2015 -0700 ---------------------------------------------------------------------- support/jenkins_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5766058e/support/jenkins_build.sh ---------------------------------------------------------------------- diff --git a/support/jenkins_build.sh b/support/jenkins_build.sh index 8451c05..cea5ead 100755 --- a/support/jenkins_build.sh +++ b/support/jenkins_build.sh @@ -110,7 +110,7 @@ TAG=mesos-`date +%s`-$RANDOM # Build the Docker imeage. # TODO(vinod): Instead of building Docker images on the fly host the # images on DockerHub and use them. -docker build -t $TAG . +docker build --no-cache=true -t $TAG . # Set a trap to delete the image on exit. trap "docker rmi $TAG" EXIT
