Dockerfile 207 B

12345678910
  1. FROM ubuntu:xenial
  2. RUN apt-get update && \
  3. apt-get install -y python-pip python-dev && \
  4. pip install tox
  5. COPY . /integration
  6. WORKDIR /integration
  7. RUN tox --notest
  8. CMD ["tox", "-e", "integration-tests"]