mirror of
https://github.com/mozilla/send.git
synced 2026-01-13 07:28:00 -05:00
10 lines
207 B
Docker
10 lines
207 B
Docker
FROM ubuntu:xenial
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python-pip python-dev && \
|
|
pip install tox
|
|
COPY . /integration
|
|
WORKDIR /integration
|
|
RUN tox --notest
|
|
|
|
CMD ["tox", "-e", "integration-tests"] |