|
|
@ -1,10 +1,6 @@
|
|
|
|
# Latest version of centos
|
|
|
|
# Latest version of centos
|
|
|
|
FROM centos:centos7
|
|
|
|
FROM centos:centos7
|
|
|
|
ENV LC_ALL en_US.UTF-8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#RUN yum -y swap fakesystemd systemd
|
|
|
|
|
|
|
|
RUN yum -y update; yum clean all; yum -y swap fakesystemd systemd
|
|
|
|
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); \
|
|
|
|
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 /lib/systemd/system/multi-user.target.wants/*; \
|
|
|
|
rm -f /etc/systemd/system/*.wants/*; \
|
|
|
|
rm -f /etc/systemd/system/*.wants/*; \
|
|
|
@ -13,7 +9,6 @@ rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
|
|
|
|
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
|
|
|
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
|
|
|
|
rm -f /lib/systemd/system/basic.target.wants/*; \
|
|
|
|
rm -f /lib/systemd/system/basic.target.wants/*; \
|
|
|
|
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
|
|
|
rm -f /lib/systemd/system/anaconda.target.wants/*;
|
|
|
|
|
|
|
|
|
|
|
|
RUN yum -y install \
|
|
|
|
RUN yum -y install \
|
|
|
|
dbus-python \
|
|
|
|
dbus-python \
|
|
|
|
epel-release \
|
|
|
|
epel-release \
|
|
|
@ -25,7 +20,6 @@ RUN yum -y install \
|
|
|
|
sudo \
|
|
|
|
sudo \
|
|
|
|
unzip \
|
|
|
|
unzip \
|
|
|
|
which
|
|
|
|
which
|
|
|
|
|
|
|
|
|
|
|
|
RUN yum -y install \
|
|
|
|
RUN yum -y install \
|
|
|
|
PyYAML \
|
|
|
|
PyYAML \
|
|
|
|
python-coverage \
|
|
|
|
python-coverage \
|
|
|
@ -38,11 +32,9 @@ RUN yum -y install \
|
|
|
|
python-pip \
|
|
|
|
python-pip \
|
|
|
|
python-setuptools \
|
|
|
|
python-setuptools \
|
|
|
|
python-virtualenv
|
|
|
|
python-virtualenv
|
|
|
|
|
|
|
|
|
|
|
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
|
|
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
|
|
|
RUN mkdir /etc/ansible/
|
|
|
|
RUN mkdir /etc/ansible/
|
|
|
|
RUN echo -e '[local]\nlocalhost' > /etc/ansible/hosts
|
|
|
|
RUN echo -e '[local]\nlocalhost' > /etc/ansible/hosts
|
|
|
|
|
|
|
|
|
|
|
|
VOLUME /sys/fs/cgroup /run /tmp
|
|
|
|
VOLUME /sys/fs/cgroup /run /tmp
|
|
|
|
ENV container=docker
|
|
|
|
ENV container=docker
|
|
|
|
CMD ["/usr/sbin/init"]
|
|
|
|
CMD ["/usr/sbin/init"]
|
|
|
|