summaryrefslogtreecommitdiff
path: root/test/utils
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2018-01-05 20:30:41 -0800
committerMatt Clay <matt@mystile.com>2018-01-05 20:40:26 -0800
commitb7bf98cd3a889e84b0c2eb715a1272dbd549835b (patch)
tree9bd304793c6c26d555ad2f6d59c9c8b3b5b14a82 /test/utils
parent85761d1291954e1069f9f80e480d8a2b466623e4 (diff)
downloadansible-b7bf98cd3a889e84b0c2eb715a1272dbd549835b.tar.gz
Add fedora27py3 Dockerfile.
Diffstat (limited to 'test/utils')
-rw-r--r--test/utils/docker/fedora27py3/Dockerfile71
1 files changed, 71 insertions, 0 deletions
diff --git a/test/utils/docker/fedora27py3/Dockerfile b/test/utils/docker/fedora27py3/Dockerfile
new file mode 100644
index 0000000000..75187484ae
--- /dev/null
+++ b/test/utils/docker/fedora27py3/Dockerfile
@@ -0,0 +1,71 @@
+FROM fedora:27
+
+RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
+rm -f /lib/systemd/system/multi-user.target.wants/*; \
+rm -f /etc/systemd/system/*.wants/*; \
+rm -f /lib/systemd/system/local-fs.target.wants/*; \
+rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
+rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
+rm -f /lib/systemd/system/basic.target.wants/*; \
+rm -f /lib/systemd/system/anaconda.target.wants/*;
+
+RUN dnf clean all && \
+ dnf -y --setopt=install_weak_deps=false install \
+ acl \
+ bzip2 \
+ file \
+ findutils \
+ gcc \
+ git \
+ glibc-locale-source \
+ iproute \
+ libffi \
+ libffi-devel \
+ make \
+ mariadb-server \
+ openssh-clients \
+ openssh-server \
+ openssl-devel \
+ pass \
+ procps \
+ python3-cryptography \
+ python3-dbus \
+ python3-devel \
+ python3-dnf \
+ python3-httplib2 \
+ python3-jinja2 \
+ python3-lxml \
+ python3-mock \
+ python3-mysql \
+ python3-nose \
+ python3-paramiko \
+ python3-passlib \
+ python3-pip \
+ python3-PyYAML \
+ python3-setuptools \
+ python3-virtualenv \
+ rpm-build \
+ rubygems \
+ sshpass \
+ subversion \
+ sudo \
+ tar \
+ unzip \
+ which \
+ zip \
+ && \
+ dnf clean all
+
+RUN localedef --quiet -c -i en_US -f UTF-8 en_US.UTF-8
+RUN /usr/bin/sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
+RUN mkdir /etc/ansible/
+RUN /usr/bin/echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
+VOLUME /sys/fs/cgroup /run /tmp
+RUN ssh-keygen -q -t dsa -N '' -f /etc/ssh/ssh_host_dsa_key && \
+ ssh-keygen -q -t rsa -N '' -f /etc/ssh/ssh_host_rsa_key && \
+ ssh-keygen -q -t rsa -N '' -f /root/.ssh/id_rsa && \
+ cp /root/.ssh/id_rsa.pub /root/.ssh/authorized_keys && \
+ for key in /etc/ssh/ssh_host_*_key.pub; do echo "localhost $(cat ${key})" >> /root/.ssh/known_hosts; done
+RUN pip3 install coverage junit-xml
+ENV container=docker
+CMD ["/usr/sbin/init"]