diff options
author | Matt Kwong <mattkwong@google.com> | 2016-09-29 18:30:19 -0700 |
---|---|---|
committer | Matt Kwong <mattkwong@google.com> | 2016-09-29 18:30:19 -0700 |
commit | 66a1eea681b1337340e33abd211a8fb1233e8eab (patch) | |
tree | 22973fc08dc5f9ec984c41a55bd70130c7a8a0e5 /tools/dockerfile/test/cxx_wheezy_x64/Dockerfile | |
parent | 10dcccadfb1400bdc016ad2861b601a9d2574d04 (diff) |
changed wheezy dockerfile to install git version > 1.7 to support local submodule cloning
Diffstat (limited to 'tools/dockerfile/test/cxx_wheezy_x64/Dockerfile')
-rw-r--r-- | tools/dockerfile/test/cxx_wheezy_x64/Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/dockerfile/test/cxx_wheezy_x64/Dockerfile b/tools/dockerfile/test/cxx_wheezy_x64/Dockerfile index c25033387f..503a435707 100644 --- a/tools/dockerfile/test/cxx_wheezy_x64/Dockerfile +++ b/tools/dockerfile/test/cxx_wheezy_x64/Dockerfile @@ -63,6 +63,13 @@ RUN apt-get update && apt-get install -y \ # Build profiling RUN apt-get update && apt-get install -y time && apt-get clean +#================ +# Add backport to Debian sources.list and update git to version > 1.7 +RUN echo "deb http://http.debian.net/debian wheezy-backports main" \ + >/etc/apt/sources.list.d/wheezy-backports.list +RUN apt-get update -qq +RUN apt-get -t wheezy-backports install -y -qq git mercurial + #==================== # Python dependencies |