wide/Dockerfile

17 lines
310 B
Docker
Raw Normal View History

2014-11-18 07:01:17 +03:00
FROM golang:latest
2014-11-18 08:41:24 +03:00
MAINTAINER Liang Ding <dl88250@gmail.com>
2014-11-18 07:01:17 +03:00
2014-11-18 07:46:04 +03:00
RUN go get github.com/88250/ide_stub
RUN go get github.com/nsf/gocode
2014-11-18 08:16:13 +03:00
RUN go get github.com/bradfitz/goimports
2014-11-18 07:46:04 +03:00
2014-11-18 07:01:17 +03:00
ADD . /go/src/github.com/b3log/wide
WORKDIR /go/src/github.com/b3log/wide
RUN go get
RUN go build
ENV GOROOT /usr/src/go
EXPOSE 7070