mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
- Fix broken wait in tests. - Run lint in the build container. - Merge two quick steps in the circle plan. - Increase number of test VMs to 3 (again).
11 lines
365 B
Docker
11 lines
365 B
Docker
FROM golang:1.5.3
|
|
ENV GO15VENDOREXPERIMENT 1
|
|
RUN apt-get update && apt-get install -y libpcap-dev python-requests time
|
|
RUN go clean -i net && go install -tags netgo std && go install -race -tags netgo std
|
|
RUN go get -tags netgo \
|
|
github.com/golang/lint/golint \
|
|
github.com/fzipp/gocyclo \
|
|
github.com/kisielk/errcheck
|
|
COPY build.sh /
|
|
ENTRYPOINT ["/build.sh"]
|