File tree Expand file tree Collapse file tree 1 file changed +17
-9
lines changed
Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change 1- FROM golang:wheezy
1+ FROM golang:latest
22MAINTAINER Toomore Chiang <toomore0929@gmail.com>
33
4- RUN go get golang.org/x/tools/cmd/cover && \
5- go get golang.org/x/tools/cmd/vet && \
6- go get golang.org/x/tools/cmd/goimports && \
4+ WORKDIR /go/src/github.com/toomore/gogrs/
5+
6+ ADD ./cmd ./cmd
7+ ADD ./realtime ./realtime
8+ ADD ./tradingdays ./tradingdays
9+ ADD ./twse ./twse
10+ ADD ./utils ./utils
11+
12+ ADD ./LICENSE ./
13+ ADD ./README.md ./
14+ ADD ./doc.go ./
15+ ADD ./goclean.sh ./
16+
17+ RUN \
718 go get github.com/golang/lint/golint && \
8- go get github.com/toomore/gogrs && \
9- cd /go/src/github.com/toomore/gogrs && \
10- go get -v ./... && \
11- cd /go/src && \
12- rm -rf ./*
19+ go get golang.org/x/tools/cmd/goimports && \
20+ go get -v ./...
You can’t perform that action at this time.
0 commit comments