Skip to content

Instantly share code, notes, and snippets.

@bouk
Created October 7, 2013 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bouk/6862105 to your computer and use it in GitHub Desktop.
Save bouk/6862105 to your computer and use it in GitHub Desktop.
FROM ubuntu
RUN apt-get install -y wget
RUN wget -O - http://go.googlecode.com/files/go1.1.2.linux-amd64.tar.gz | tar xzf - -C /usr/local/
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go
RUN ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt
RUN ln -s /usr/local/go/bin/godoc /usr/local/bin/godoc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment