From c6dbbb5857766c0252aa735e17e01a6d48e19697 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 16 Dec 2014 16:36:46 +1100 Subject: [PATCH] dashboard/env: update watcher Dockerfile to use latest version This version includes the JSON polling from: https://go-review.googlesource.com/#/c/1568/ Also, we no longer need sid because we no longer need Mercurial, so revert back to wheezy, which is less of a moving target. Change-Id: I3e6bde097e49deb891101cd92fa80e9f093a7c8b Reviewed-on: https://go-review.googlesource.com/1613 Reviewed-by: David Symonds --- dashboard/env/commit-watcher/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dashboard/env/commit-watcher/Dockerfile b/dashboard/env/commit-watcher/Dockerfile index 013bf4cd..dce074a5 100644 --- a/dashboard/env/commit-watcher/Dockerfile +++ b/dashboard/env/commit-watcher/Dockerfile @@ -4,8 +4,7 @@ # Commit watcher for Go repos. -# Wheezy has Mercurial 2.2.2 and we need Mercurial >= 2.8, sid has 3.1. -FROM debian:sid +FROM debian:wheezy MAINTAINER golang-dev ENV DEBIAN_FRONTEND noninteractive @@ -14,4 +13,4 @@ ADD /scripts/install-apt-deps.sh /scripts/ RUN /scripts/install-apt-deps.sh ADD /scripts/build-commit-watcher.sh /scripts/ -RUN GO_REV=go1.4 WATCHER_REV=6735829fe0 /scripts/build-commit-watcher.sh && test -f /usr/local/bin/watcher +RUN GO_REV=go1.4 WATCHER_REV=a54d0066172 /scripts/build-commit-watcher.sh && test -f /usr/local/bin/watcher