mindoc/Dockerfile

18 lines
311 B
Docker
Raw Normal View History

FROM golang:1.8.1-alpine
2017-05-01 13:11:33 +08:00
RUN apk add --update bash git make gcc
ADD . /go/src/github.com/lifei6671/godoc
WORKDIR /go/src/github.com/lifei6671/godoc
RUN chmod +x start.sh
2017-05-01 12:58:28 +08:00
RUN go get -d ./... && \
2017-05-03 17:39:27 +08:00
go get github.com/mitchellh/gox && \
2017-05-03 17:54:17 +08:00
gox -os "windows linux darwin" -arch amd64
2017-05-03 17:31:34 +08:00
CMD ["./start.sh"]