Commit 825c8e9
Changed files (1)
Dockerfile
@@ -0,0 +1,8 @@
+FROM ubuntu:12.04
+MAINTAINER bryfry "bryon.fryer@gmail.com"
+RUN apt-get update
+RUN apt-get install -q -y ca-certificates wget vim openssh-server
+RUN wget -q -P "/tmp" https://go.googlecode.com/files/go1.2.linux-amd64.tar.gz
+RUN tar -C /usr/local/ -xzf /tmp/go1.2.linux-amd64.tar.gz
+ENV PATH /usr/local/go/bin:$PATH
+ADD https://raw.github.com/bryfry/home/master/.bashrc /.bashrc