This commit is contained in:
parent
9500ea33a2
commit
d82fa32715
13
Dockerfile
13
Dockerfile
|
@ -1,10 +1,14 @@
|
||||||
FROM golang:1.7.4
|
FROM golang:1.7.4
|
||||||
MAINTAINER Liang Ding <dl88250@gmail.com>
|
MAINTAINER Liang Ding <dl88250@gmail.com>
|
||||||
|
|
||||||
RUN cd /usr/local/go/src
|
RUN apt-get update && apt-get install bzip2
|
||||||
RUN set GOOS=darwin && set GOARCH=amd64 && ./make.bash --no-clean
|
|
||||||
RUN set GOOS=linux && set GOARCH=arm && ./make.bash --no-clean
|
ENV GOROOT /usr/local/go
|
||||||
RUN set GOOS=windows && set GOARCH=amd64 && ./make.bash --no-clean
|
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
|
ADD . /wide/gogogo/src/github.com/b3log/wide
|
||||||
|
|
||||||
|
@ -13,7 +17,6 @@ RUN tar zxf /wide/gogogo/src/github.com/b3log/wide/deps/github.com.tar.gz -C /wi
|
||||||
|
|
||||||
RUN useradd wide && useradd runner
|
RUN useradd wide && useradd runner
|
||||||
|
|
||||||
ENV GOROOT /usr/src/go
|
|
||||||
ENV GOPATH /wide/gogogo
|
ENV GOPATH /wide/gogogo
|
||||||
|
|
||||||
RUN go build github.com/go-fsnotify/fsnotify
|
RUN go build github.com/go-fsnotify/fsnotify
|
||||||
|
|
Loading…
Reference in New Issue