From b3ec1fce19a47ea68b0c2a23cf644528b45c1d31 Mon Sep 17 00:00:00 2001 From: boucher Date: Fri, 15 May 2015 15:10:27 -0700 Subject: [PATCH] Add steps to install criu to the Dockerfile Docker-DCO-1.1-Signed-off-by: Ross Boucher (github: boucher) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ff5c4587b..e6c05660d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM golang:1.4 +RUN echo "deb http://ftp.us.debian.org/debian testing main contrib" >> /etc/apt/sources.list +RUN apt-get update && apt-get install -y criu=1.5.2-1 && rm -rf /var/lib/apt/lists/* + RUN go get golang.org/x/tools/cmd/cover ENV GOPATH $GOPATH:/go/src/github.com/docker/libcontainer/vendor