1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/utils/docker/centos6/Dockerfile
Matt Clay 4530eea7f8 Docker image updates for integration tests. (#26054)
* Sort packages to install.
* Add python-argparse to centos6 docker image.
* Add gcc and python dev lib to docker images.
* Add python cryptography to docker images.
* Add coverage using pip instead of OS packages.
* Update old pip versions in docker images.
* Exclude */pyshared/* from coverage reporting.
2017-06-23 12:45:38 -07:00

61 lines
1.5 KiB
Docker

FROM centos:centos6
RUN yum clean all && \
yum -y install epel-release && \
yum -y install \
acl \
asciidoc \
bzip2 \
file \
gcc \
git \
libffi \
libffi-devel \
make \
mercurial \
mysql \
MySQL-python \
mysql-server \
openssh-clients \
openssh-server \
openssl-devel \
python-argparse \
python-devel \
python-httplib2 \
python-jinja2 \
python-keyczar \
python-lxml \
python-mock \
python-nose \
python-paramiko \
python-passlib \
python-pip \
python-setuptools \
python-virtualenv \
PyYAML \
rpm-build \
rubygems \
sed \
subversion \
sudo \
unzip \
which \
zip \
&& \
yum clean all
RUN rpm -e --nodeps python-crypto && pip install --upgrade pycrypto cryptography
RUN /bin/sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
RUN mkdir /etc/ansible/
RUN /bin/echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
VOLUME /sys/fs/cgroup /run /tmp
RUN ssh-keygen -q -t rsa1 -N '' -f /etc/ssh/ssh_host_key && \
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 pip install coverage junit-xml
ENV container=docker
CMD ["/sbin/init"]