From 97cd4ea46622a999bb8ff5a86459de5dd3ff9db2 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 8 Jul 2015 16:30:03 -0700 Subject: [PATCH] fix dockerfile Signed-off-by: Jessica Frazelle --- test_Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_Dockerfile b/test_Dockerfile index 86a61fb5f..8efe0378a 100644 --- a/test_Dockerfile +++ b/test_Dockerfile @@ -1,7 +1,7 @@ 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 iptables criu=1.5.2-1 && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y iptables criu=1.6-2 && rm -rf /var/lib/apt/lists/* # setup a playground for us to spawn containers in RUN mkdir /busybox && \ @@ -11,5 +11,4 @@ RUN curl -sSL https://raw.githubusercontent.com/docker/docker/master/hack/dind - chmod +x /dind WORKDIR /go/src/github.com/opencontainers/runc -COPY libcontainer/sample_configs/minimal.json /busybox/container.json ENTRYPOINT ["/dind"]