aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Dockerfile.fedora-27
diff options
context:
space:
mode:
authorLarry Smith Jr <mrlesmithjr@gmail.com>2018-12-19 09:52:21 -0500
committerLarry Smith Jr <mrlesmithjr@gmail.com>2018-12-19 09:52:21 -0500
commitd62baac66345ed735443cbb648e684923fed7d17 (patch)
tree0dc5c11f860fe6b373f3f66b87358d1e46b8407d /tests/Dockerfile.fedora-27
parent9cac39786e63d655eceb3ecbd74b3df8461654d3 (diff)
downloadansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.tar.gz
ansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.tar.zst
ansible-rabbitmq-d62baac66345ed735443cbb648e684923fed7d17.zip
Added Travis testing
Diffstat (limited to 'tests/Dockerfile.fedora-27')
-rw-r--r--tests/Dockerfile.fedora-2726
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/Dockerfile.fedora-27 b/tests/Dockerfile.fedora-27
new file mode 100644
index 0000000..15474da
--- /dev/null
+++ b/tests/Dockerfile.fedora-27
@@ -0,0 +1,26 @@
1FROM fedora:27
2ENV container=docker
3
4RUN dnf -y install gmp-devel libffi-devel openssl-devel python-crypto \
5 python-devel python-dnf python-pip python-setuptools python-virtualenv \
6 redhat-rpm-config systemd && \
7 dnf -y group install "C Development Tools and Libraries"
8
9# Install systemd -- See https://hub.docker.com/_/centos/
10RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
11 rm -f /lib/systemd/system/multi-user.target.wants/*;\
12 rm -f /etc/systemd/system/*.wants/*;\
13 rm -f /lib/systemd/system/local-fs.target.wants/*; \
14 rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
15 rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
16 rm -f /lib/systemd/system/basic.target.wants/*;\
17 rm -f /lib/systemd/system/anaconda.target.wants/*;
18
19RUN pip install enum34 ipaddress wheel && \
20 pip install ansible ansible-lint
21
22COPY .ansible-lint /
23
24VOLUME ["/sys/fs/cgroup"]
25
26CMD ["/usr/sbin/init"]