This commit is contained in:
Liang Ding 2014-11-19 16:13:46 +08:00
parent fa7ea49739
commit a7eb2a0f15
2 changed files with 10 additions and 16 deletions

View File

@ -1,10 +1,19 @@
FROM golang:latest
MAINTAINER Liang Ding <dl88250@gmail.com>
RUN go get github.com/88250/ide_stub
RUN go get github.com/nsf/gocode
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
CMD ["./docker.sh"]
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

View File

@ -1,15 +0,0 @@
#!/bin/bash
# Make docker image.
go get
go build
cp -r . /root/wide
go get github.com/88250/ide_stub
go get github.com/nsf/gocode
go get github.com/bradfitz/goimports
cd /root/wide
rm -rf /go/pkg /go/src
mv ./hello /go/src/