Files
deb-python-dcos/Dockerfile
José Armando García Sancio 7bc7a9016b DCOS-203 Add docker support for running tox
Tested this locally by creating the docker image in the Dockerfile and
running the command detailed in the README.rst
2015-01-20 21:20:32 +00:00

8 lines
272 B
Docker

# Configure a Debian testing distro to run Tox for Python 2.7 and 3.4
FROM debian:testing
MAINTAINER José Armando García Sancio <jose@mesosphere.io>
RUN apt-get update && \
apt-get install -y python2.7 python3.4 python-pip && \
apt-get clean
RUN pip install tox