mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
- Ensure we use up to date build container when running tests. - Parallelise host setup for integration tests. - Pass some more circle env vars through to ./tools/tests so the scheduler works. - Gather coverage from multiple shards. - Create files as the right owner inside the container. - Parallelise the circle.yaml - Parallelise the intergration tests using existing machinery - Build experimental in parallel. - Use custom scheduler prefix for integration tests, so schedules don't clash with weave.
7 lines
175 B
Docker
7 lines
175 B
Docker
FROM golang:1.5.1
|
|
ENV GO15VENDOREXPERIMENT 1
|
|
RUN apt-get update && apt-get install -y libpcap-dev python-pip
|
|
RUN pip install requests
|
|
COPY build.sh /
|
|
ENTRYPOINT ["/build.sh"]
|