Tested this locally by creating the docker image in the Dockerfile and running the command detailed in the README.rst
8 lines
272 B
Docker
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
|