mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
20 lines
304 B
Docker
20 lines
304 B
Docker
FROM golang:1.8.1-alpine
|
|
|
|
|
|
RUN apk add --update bash git make gcc
|
|
|
|
ADD . /go/src/github.com/lifei6671/mindoc
|
|
|
|
|
|
WORKDIR /go/src/github.com/lifei6671/mindoc
|
|
|
|
RUN chmod +x start.sh
|
|
|
|
RUN go get -d ./... && \
|
|
go get github.com/mitchellh/gox
|
|
RUN ls
|
|
RUN gox -build-toolchain
|
|
RUN gox
|
|
|
|
CMD ["./start.sh"]
|