Add dox.yml file and the first of some dockerfiles

This commit is contained in:
Monty Taylor 2014-09-05 08:02:55 -07:00
parent eb3ab22801
commit a209df79cd
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,8 @@
FROM ubuntu:trusty
MAINTAINER OpenStack <openstack-dev@lists.openstack.org>
RUN apt-get update
RUN apt-get install -y wget git python
RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py
RUN pip install -U setuptools

7
dox.yml Normal file
View File

@ -0,0 +1,7 @@
image: infra/trusty
add:
- requirements.txt
- test-requirements.txt
prep:
- pip install -U -r requirements.txt -r test-requirements.txt
commands: python setup.py testr --slowest