Add Docker file

This commit is contained in:
George Shammas 2015-05-15 17:15:45 -04:00
parent c4b8b29681
commit 74cb075085
2 changed files with 8 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
Dockerfile
.git
.dockerignore

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:1.4-onbuild
COPY . /usr/src/app
RUN go get -d -v
RUN go install -v