From b302dc2634678ea7a082c0142f496fdbcc9e398d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9F=A9=E4=BA=AE?= Date: Wed, 21 Jun 2017 18:00:36 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3a949d30..92cfd4ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.8.1-alpine +FROM golang:1.8.3-alpine3.6 RUN apk add --update bash git make gcc @@ -10,10 +10,9 @@ WORKDIR /go/src/github.com/lifei6671/mindoc RUN chmod +x start.sh -RUN go get -d ./... && \ - go get github.com/mitchellh/gox -RUN brew install glide -RUN glide install -RUN go build -ldflags "-w" - +RUN go get -d ./... && \ + go get github.com/mitchellh/gox && \ + gox -os "windows linux darwin" -arch amd64 + + CMD ["./start.sh"]