add Dockerfile

This commit is contained in:
Paul Tagliamonte 2015-12-13 19:50:56 -05:00
parent 413d9da399
commit 9500cd3864

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM golang:1
ADD . /gorepos
WORKDIR /gorepos
RUN go get -d .
RUN go build ./...
CMD /gorepos/gorepos