This commit is contained in:
Liang Ding 2017-01-23 15:28:34 +08:00
parent 771dffc7d4
commit 9500ea33a2
1 changed files with 4 additions and 20 deletions

View File

@ -1,26 +1,10 @@
FROM golang:1.7.4
MAINTAINER Liang Ding <dl88250@gmail.com>
ENV GOLANG_CROSSPLATFORMS \
darwin/386 darwin/amd64 \
dragonfly/386 dragonfly/amd64 \
freebsd/386 freebsd/amd64 freebsd/arm \
linux/386 linux/amd64 linux/arm \
nacl/386 nacl/amd64p32 nacl/arm \
netbsd/386 netbsd/amd64 netbsd/arm \
openbsd/386 openbsd/amd64 \
plan9/386 plan9/amd64 \
solaris/amd64 \
windows/386 windows/amd64
ENV GOARM 5
RUN cd /usr/local/go/src \
&& set -ex \
&& for platform in $GOLANG_CROSSPLATFORMS; do \
GOOS=${platform%/*} \
GOARCH=${platform##*/} \
./make.bash --no-clean 2>&1; \
done
RUN cd /usr/local/go/src
RUN set GOOS=darwin && set GOARCH=amd64 && ./make.bash --no-clean
RUN set GOOS=linux && set GOARCH=arm && ./make.bash --no-clean
RUN set GOOS=windows && set GOARCH=amd64 && ./make.bash --no-clean
ADD . /wide/gogogo/src/github.com/b3log/wide