mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
Docker
41 lines
1.2 KiB
Docker
9 years ago
|
# Latest version of centos
|
||
|
FROM centos:centos7
|
||
|
RUN yum -y update; yum clean all; yum -y swap fakesystemd systemd
|
||
|
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 yum -y install \
|
||
|
dbus-python \
|
||
|
epel-release \
|
||
|
git \
|
||
|
make \
|
||
|
mercurial \
|
||
|
rubygems \
|
||
|
subversion \
|
||
|
sudo \
|
||
|
unzip \
|
||
|
which
|
||
|
RUN yum -y install \
|
||
|
PyYAML \
|
||
|
python-coverage \
|
||
|
python-httplib2 \
|
||
|
python-jinja2 \
|
||
|
python-keyczar \
|
||
|
python-mock \
|
||
|
python-nose \
|
||
|
python-paramiko \
|
||
|
python-pip \
|
||
|
python-setuptools \
|
||
|
python-virtualenv
|
||
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
||
|
RUN mkdir /etc/ansible/
|
||
|
RUN echo -e '[local]\nlocalhost' > /etc/ansible/hosts
|
||
|
VOLUME /sys/fs/cgroup /run /tmp
|
||
|
ENV container=docker
|
||
|
CMD ["/usr/sbin/init"]
|