From 0a29049440259e5900cbb465ee2434b8eec108c2 Mon Sep 17 00:00:00 2001 From: Minho Date: Sat, 3 Feb 2018 17:22:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92d63653..a8bb25ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.8.3-alpine3.6 +FROM golang:1.9.3-alpine3.6 # add china aliyun repo 新增了 alpine 3.6 的阿里源 RUN cp /etc/apk/repositories /etc/apk/repositories.back && \ @@ -13,7 +13,10 @@ WORKDIR /go/src/github.com/lifei6671/mindoc RUN chmod +x start.sh -#RUN go get -d ./... && \ # 这行 docker build 不过去,所以注释掉了 -RUN go get github.com/mitchellh/gox && \ - gox -os "windows linux darwin" -arch amd64 -CMD ["./start.sh"] +RUN go get -d ./... && \ + CGO_ENABLE=1 go build -v -o mindoc_linux_amd64 -ldflags="-w -X main.VERSION=$TAG -X 'main.BUILD_TIME=`date`' -X 'main.GO_VERSION=`go version`'" && \ + rm -rf commands controllers models modules routers tasks vendor docs search data utils graphics .git Godeps uploads/* .gitignore .travis.yml Dockerfile gide.yaml LICENSE main.go README.md conf/enumerate.go conf/mail.go install.lock + +WORKDIR /go/src/github.com/lifei6671/mindoc + +CMD ["./start.sh"] \ No newline at end of file