From ad3d14f1da33d00ee3506f12922fb3faf87b65d7 Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 12 Mar 2015 17:54:43 -0400 Subject: [PATCH] Update to recent busybox 2014.11 tar Move up to the latest busybox tarball that has the fix for `ip` command segfault. Docker-DCO-1.1-Signed-off-by: Phil Estes (github: estesp) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0771c808..e2c44161 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN go get github.com/docker/docker/pkg/term # setup a playground for us to spawn containers in RUN mkdir /busybox && \ - curl -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.02/rootfs.tar' | tar -xC /busybox + curl -sSL 'https://github.com/jpetazzo/docker-busybox/raw/buildroot-2014.11/rootfs.tar' | tar -xC /busybox RUN curl -sSL https://raw.githubusercontent.com/docker/docker/master/project/dind -o /dind && \ chmod +x /dind