Merge pull request #6 from caputomarcos/master

Add Dockerfile
This commit is contained in:
Alex Myasoedov 2017-02-07 19:21:16 -05:00 committed by GitHub
commit be7a85765c

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM golang:onbuild
RUN mkdir -p /app
WORKDIR /app
ADD . /app
RUN go build ./main.go
CMD ["./main"]