wide/Dockerfile

44 lines
1.2 KiB
Docker
Raw Normal View History

2017-01-23 09:52:29 +03:00
FROM golang:1.7.4
2014-11-18 08:41:24 +03:00
MAINTAINER Liang Ding <dl88250@gmail.com>
2014-11-18 07:01:17 +03:00
2017-01-23 09:52:29 +03:00
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
2014-11-20 11:05:39 +03:00
ADD . /wide/gogogo/src/github.com/b3log/wide
2015-08-05 06:46:44 +03:00
2015-08-05 07:58:39 +03:00
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/
2014-11-20 11:05:39 +03:00
2014-12-18 06:55:30 +03:00
RUN useradd wide && useradd runner
2014-11-19 11:13:46 +03:00
2014-11-20 10:52:44 +03:00
ENV GOROOT /usr/src/go
ENV GOPATH /wide/gogogo
2014-11-19 10:44:41 +03:00
2015-08-05 08:23:48 +03:00
RUN go build github.com/go-fsnotify/fsnotify
RUN go build github.com/gorilla/sessions
RUN go build github.com/gorilla/websocket
2015-08-05 08:49:12 +03:00
RUN go install github.com/visualfc/gotools github.com/nsf/gocode github.com/bradfitz/goimports
2014-11-20 10:52:44 +03:00
WORKDIR /wide/gogogo/src/github.com/b3log/wide
2015-08-05 08:16:53 +03:00
RUN go build -v
2014-12-13 17:03:55 +03:00
2015-01-14 06:49:11 +03:00
EXPOSE 7070