compose/wercker.yml
Ben Firshman 7a8f5e10fd Add wercker.yml
Changed Dockerfile to run as root so it has access to
/var/run/docker.sock.

Signed-off-by: Ben Firshman <ben@firshman.co.uk>
2014-09-23 10:40:51 -07:00

15 lines
428 B
YAML

box: wercker-labs/docker
build:
steps:
- script:
name: validate DCO
code: script/validate-dco
- script:
name: build
code: docker build -t fig .
- script:
name: flake8
code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
- script:
name: run tests
code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests