9 lines
190 B
Docker
9 lines
190 B
Docker
|
FROM ubuntu:xenial
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y python-pip python-dev && \
|
||
|
pip install tox
|
||
|
COPY . /integration
|
||
|
WORKDIR /integration
|
||
|
|
||
|
CMD ["tox", "-e", "integration-tests"]
|