1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-11-14 07:02:30 +01:00
send/test/integration/Dockerfile

10 lines
207 B
Docker
Raw Normal View History

FROM ubuntu:xenial
RUN apt-get update && \
apt-get install -y python-pip python-dev && \
pip install tox
COPY . /integration
WORKDIR /integration
2018-05-04 08:47:44 +02:00
RUN tox --notest
CMD ["tox", "-e", "integration-tests"]