mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 19:20:22 -07:00
Updating docker files for tests
This commit is contained in:
parent
e4acd44e23
commit
f56af2ec3f
2 changed files with 0 additions and 15 deletions
|
@ -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"]
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
FROM ubuntu:trusty
|
FROM ubuntu:trusty
|
||||||
ENV LC_ALL en_US.UTF-8
|
|
||||||
|
|
||||||
RUN apt-get clean; apt-get update -y;
|
RUN apt-get clean; apt-get update -y;
|
||||||
|
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
debianutils \
|
debianutils \
|
||||||
git \
|
git \
|
||||||
|
@ -12,7 +9,6 @@ RUN apt-get install -y \
|
||||||
subversion \
|
subversion \
|
||||||
sudo \
|
sudo \
|
||||||
unzip
|
unzip
|
||||||
|
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y \
|
||||||
python-coverage \
|
python-coverage \
|
||||||
python-httplib2 \
|
python-httplib2 \
|
||||||
|
@ -25,11 +21,8 @@ RUN apt-get install -y \
|
||||||
python-setuptools \
|
python-setuptools \
|
||||||
python-virtualenv \
|
python-virtualenv \
|
||||||
python-yaml
|
python-yaml
|
||||||
|
|
||||||
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
|
|
||||||
ENV container=docker
|
ENV container=docker
|
||||||
CMD ["/sbin/init"]
|
CMD ["/sbin/init"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue