mirror of
https://github.com/docker/docs.git
synced 2026-04-03 17:59:01 +07:00
This reverts commit 60411e9f05.
Closes #556
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
Conflicts:
requirements.txt
setup.py
6 lines
184 B
Bash
Executable File
6 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
docker build -t fig .
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests $@
|