wide/Dockerfile

26 lines
810 B
Docker
Raw Normal View History

2017-08-08 17:00:00 +03:00
FROM golang:1.8.3
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 11:42:32 +03:00
ENV GOROOT /usr/local/go
2017-08-08 16:21:47 +03:00
2017-08-08 19:35:20 +03:00
RUN apt-get update && apt-get install bzip2 zip unzip && cp -r /usr/local/go /usr/local/gobt
2017-01-23 12:49:43 +03:00
ENV GOROOT_BOOTSTRAP=/usr/local/gobt
2017-01-23 11:42:32 +03:00
2014-11-20 11:05:39 +03:00
ADD . /wide/gogogo/src/github.com/b3log/wide
2015-08-05 06:46:44 +03:00
2017-08-08 16:21:47 +03:00
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/\
2017-08-08 19:35:20 +03:00
&& useradd wide && useradd runner
2014-11-19 11:13:46 +03:00
2014-11-20 10:52:44 +03:00
ENV GOPATH /wide/gogogo
2014-11-19 10:44:41 +03:00
2017-08-08 16:21:47 +03:00
RUN go build github.com/go-fsnotify/fsnotify\
&& go build github.com/gorilla/sessions\
&& go build github.com/gorilla/websocket\
2017-08-08 19:35:20 +03:00
&& go install github.com/visualfc/gotools github.com/nsf/gocode github.com/bradfitz/goimports
2015-08-05 08:49:12 +03:00
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
2017-01-23 11:42:32 +03:00
EXPOSE 7070