mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-29 06:49:05 +08:00
13 lines
225 B
Docker
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"]
|