diff options
author | Larry Smith Jr <mrlesmithjr@gmail.com> | 2018-12-19 09:52:21 -0500 |
---|---|---|
committer | Larry Smith Jr <mrlesmithjr@gmail.com> | 2018-12-20 00:55:35 -0500 |
commit | 7437143766ca1584696fe6e828b25ed83930f478 (patch) | |
tree | 23cc3da864f890f4158a7d431c2ac7a5ef02faee /tests/Dockerfile.ubuntu-trusty | |
parent | 4353d29ae004cea98d3a80ef941aaa155c84bf9a (diff) | |
download | ansible-rabbitmq-7437143766ca1584696fe6e828b25ed83930f478.tar.gz ansible-rabbitmq-7437143766ca1584696fe6e828b25ed83930f478.tar.zst ansible-rabbitmq-7437143766ca1584696fe6e828b25ed83930f478.zip |
Added Travis testing
Diffstat (limited to 'tests/Dockerfile.ubuntu-trusty')
-rw-r--r-- | tests/Dockerfile.ubuntu-trusty | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/Dockerfile.ubuntu-trusty b/tests/Dockerfile.ubuntu-trusty new file mode 100644 index 0000000..b1645da --- /dev/null +++ b/tests/Dockerfile.ubuntu-trusty | |||
@@ -0,0 +1,14 @@ | |||
1 | FROM ubuntu:trusty | ||
2 | ENV container=docker | ||
3 | |||
4 | RUN apt-get update && \ | ||
5 | apt-get install -y --no-install-recommends build-essential libffi-dev \ | ||
6 | libssl-dev python-dev python-minimal python-pip python-setuptools \ | ||
7 | python-virtualenv && \ | ||
8 | rm -rf /var/lib/apt/lists/* | ||
9 | |||
10 | RUN pip install --upgrade pip setuptools && \ | ||
11 | pip install enum34 ipaddress wheel && \ | ||
12 | pip install ansible ansible-lint | ||
13 | |||
14 | COPY .ansible-lint / | ||