From eba96fd0b628f058dc92efc60a655a4b0220f210 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Tue, 8 Aug 2017 21:21:47 +0800 Subject: [PATCH] :whale: #325 --- Dockerfile | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1094903..df6a783 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,30 +1,28 @@ FROM golang:1.7.4 MAINTAINER Liang Ding -RUN apt-get update && apt-get install bzip2 zip unzip - ENV GOROOT /usr/local/go -RUN cp -r /usr/local/go /usr/local/gobt + +RUN apt-get update && apt-get install bzip2 zip unzip\ + cp -r /usr/local/go /usr/local/gobt ENV GOROOT_BOOTSTRAP=/usr/local/gobt -RUN cd /usr/local/go/src && export GOOS=darwin && export GOARCH=amd64 && ./make.bash --no-clean -RUN cd /usr/local/go/src && export GOOS=linux && export GOARCH=arm && ./make.bash --no-clean -RUN cd /usr/local/go/src && export GOOS=windows && export GOARCH=amd64 && ./make.bash --no-clean +#RUN cd /usr/local/go/src && export GOOS=darwin && export GOARCH=amd64 && ./make.bash --no-clean +#RUN cd /usr/local/go/src && export GOOS=linux && export GOARCH=arm && ./make.bash --no-clean +#RUN cd /usr/local/go/src && export GOOS=windows && export GOARCH=amd64 && ./make.bash --no-clean ADD . /wide/gogogo/src/github.com/b3log/wide -RUN unzip /wide/gogogo/src/github.com/b3log/wide/deps/golang.org.zip -d /wide/gogogo/src/ -RUN unzip /wide/gogogo/src/github.com/b3log/wide/deps/github.com.zip -d /wide/gogogo/src/ - -RUN useradd wide && useradd runner +RUN unzip /wide/gogogo/src/github.com/b3log/wide/deps/golang.org.zip -d /wide/gogogo/src/\ + && unzip /wide/gogogo/src/github.com/b3log/wide/deps/github.com.zip -d /wide/gogogo/src/\ + useradd wide && useradd runner ENV GOPATH /wide/gogogo -RUN go build github.com/go-fsnotify/fsnotify -RUN go build github.com/gorilla/sessions -RUN go build github.com/gorilla/websocket - -RUN go install github.com/visualfc/gotools github.com/nsf/gocode github.com/bradfitz/goimports +RUN go build github.com/go-fsnotify/fsnotify\ + && go build github.com/gorilla/sessions\ + && go build github.com/gorilla/websocket\ + go install github.com/visualfc/gotools github.com/nsf/gocode github.com/bradfitz/goimports WORKDIR /wide/gogogo/src/github.com/b3log/wide RUN go build -v