From 51d32148ec4dd6cce4e4fa36b94ba4682474e52e Mon Sep 17 00:00:00 2001 From: Kelsey Hightower Date: Tue, 13 Jan 2015 10:44:06 -0800 Subject: [PATCH] docs: update docker build instructions --- Documentation/hacking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/hacking.md b/Documentation/hacking.md index c887993..35b8f3b 100644 --- a/Documentation/hacking.md +++ b/Documentation/hacking.md @@ -28,5 +28,5 @@ cd rocket; ./build Alternatively, you can build rocket in a docker container with the following command. Replace $SRC with the absolute path to your rocket source code: ``` -docker run -v $SRC:/opt/rocket -i -t google/golang /bin/bash -c "apt-get install -y cpio squashfs-tools realpath && cd /opt/rocket && go get github.com/jteeuwen/go-bindata/... && go get github.com/appc/spec/... && ./build" +$ sudo docker run -v $SRC:/opt/rocket -i -t golang:1.3 /bin/bash -c "apt-get update && apt-get install -y coreutils cpio squashfs-tools realpath && cd /opt/rocket && go get github.com/jteeuwen/go-bindata/... && go get github.com/appc/spec/... && ./build" ```