mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-28 22:39:05 +08:00
12 lines
189 B
Docker
12 lines
189 B
Docker
FROM golang:1.6
|
|
|
|
RUN 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"]
|