Files
weave-scope/backend/Dockerfile
Tom Wilkie a4e707d179 Project specific changes for misspell.
- Add misspell to build container.
- Add file to build container.
- Ignore dagre spelling
2016-03-23 10:51:21 +00:00

12 lines
415 B
Docker

FROM golang:1.6.0
RUN apt-get update && apt-get install -y libpcap-dev python-requests time file
RUN go clean -i net && go install -tags netgo std && go install -race -tags netgo std
RUN go get -tags netgo \
github.com/fzipp/gocyclo \
github.com/golang/lint/golint \
github.com/kisielk/errcheck \
github.com/mjibson/esc \
github.com/client9/misspell/cmd/misspell
COPY build.sh /
ENTRYPOINT ["/build.sh"]