mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-28 22:39:05 +08:00
14 lines
305 B
Docker
14 lines
305 B
Docker
FROM golang:1.8-alpine
|
|
|
|
COPY . $GOPATH/src/github.com/gojp/goreportcard
|
|
|
|
WORKDIR $GOPATH/src/github.com/gojp/goreportcard
|
|
|
|
RUN apk update && apk upgrade && apk add --no-cache git make \
|
|
&& go get golang.org/x/tools/go/vcs \
|
|
&& ./scripts/make-install.sh
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["make", "start"]
|