FROM golang:1.7.4 MAINTAINER Liang Ding RUN apt-get update && apt-get install bzip2 ENV GOROOT /usr/local/go ENV GOROOT_BOOTSTRAP=$GOROOT RUN cd /usr/local/go/src && export GOOS=darwin && export GOARCH=amd64 && ./bootstrap.bash --no-clean RUN cd /usr/local/go/src && export GOOS=linux && export GOARCH=arm && ./bootstrap.bash --no-clean RUN cd /usr/local/go/src && export GOOS=windows && export GOARCH=amd64 && ./bootstrap.bash --no-clean ADD . /wide/gogogo/src/github.com/b3log/wide RUN tar zxf /wide/gogogo/src/github.com/b3log/wide/deps/golang.org.tar.gz -C /wide/gogogo/src/ RUN tar zxf /wide/gogogo/src/github.com/b3log/wide/deps/github.com.tar.gz -C /wide/gogogo/src/ RUN 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 WORKDIR /wide/gogogo/src/github.com/b3log/wide RUN go build -v EXPOSE 7070