update dockerfile
This commit is contained in:
parent
a94c17e984
commit
714836408a
22
Dockerfile
22
Dockerfile
|
@ -1,20 +1,16 @@
|
||||||
FROM golang:latest
|
FROM golang:latest
|
||||||
MAINTAINER Liang Ding <dl88250@gmail.com>
|
MAINTAINER Liang Ding <dl88250@gmail.com>
|
||||||
|
|
||||||
RUN go get github.com/88250/ide_stub
|
RUN useradd wide && mkdir -p /wide/gogogo/
|
||||||
RUN go get github.com/nsf/gocode
|
USER wide
|
||||||
RUN go get github.com/bradfitz/goimports
|
|
||||||
|
|
||||||
ADD . /go/src/github.com/b3log/wide
|
|
||||||
WORKDIR /go/src/github.com/b3log/wide
|
|
||||||
RUN go get
|
|
||||||
RUN go build
|
|
||||||
|
|
||||||
RUN cp -r . /root/wide
|
|
||||||
WORKDIR /root/wide
|
|
||||||
RUN rm -rf /go/pkg /go/src/*
|
|
||||||
RUN mv ./hello /go/src/hello
|
|
||||||
|
|
||||||
ENV GOROOT /usr/src/go
|
ENV GOROOT /usr/src/go
|
||||||
|
ENV GOPATH /wide/gogogo
|
||||||
|
|
||||||
|
RUN go get github.com/88250/ide_stub github.com/nsf/gocode github.com/bradfitz/goimports
|
||||||
|
|
||||||
|
ADD . /wide/gogogo/src/github.com/b3log/wide
|
||||||
|
WORKDIR /wide/gogogo/src/github.com/b3log/wide
|
||||||
|
RUN go get && go build
|
||||||
|
|
||||||
EXPOSE 7070
|
EXPOSE 7070
|
Loading…
Reference in New Issue