Files
goreportcard/Dockerfile
2016-02-15 11:58:18 +08:00

13 lines
225 B
Docker

FROM golang:1.5
RUN go get github.com/tools/godep && \
go get golang.org/x/tools/go/vcs
COPY . $GOPATH/src/github.com/gojp/goreportcard
WORKDIR $GOPATH/src/github.com/gojp/goreportcard
EXPOSE 8080
CMD ["make", "start"]