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-19 09:52:21 -0500 |
commit | d62baac66345ed735443cbb648e684923fed7d17 (patch) | |
tree | 0dc5c11f860fe6b373f3f66b87358d1e46b8407d /tests/Dockerfile.ubuntu-bionic | |
parent | 9cac39786e63d655eceb3ecbd74b3df8461654d3 (diff) | |
download | ansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.tar.gz ansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.tar.zst ansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.zip |
Added Travis testing
Diffstat (limited to 'tests/Dockerfile.ubuntu-bionic')
-rw-r--r-- | tests/Dockerfile.ubuntu-bionic | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/Dockerfile.ubuntu-bionic b/tests/Dockerfile.ubuntu-bionic new file mode 100644 index 0000000..07116b6 --- /dev/null +++ b/tests/Dockerfile.ubuntu-bionic | |||
@@ -0,0 +1,13 @@ | |||
1 | FROM ubuntu:bionic | ||
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 systemd && \ | ||
8 | rm -rf /var/lib/apt/lists/* | ||
9 | |||
10 | RUN pip install enum34 ipaddress wheel && \ | ||
11 | pip install ansible ansible-lint | ||
12 | |||
13 | COPY .ansible-lint / | ||