2017-09-14 09:21:37 +00:00
|
|
|
FROM centos:6
|
|
|
|
|
|
|
|
# This is needed so that ansible managed to read "ansible_default_ipv4"
|
|
|
|
# This step is needed since standard CentOS docker image does not come with EPEL installed by default
|
2019-12-26 14:34:49 +00:00
|
|
|
RUN yum install iproute epel-release python-pip python-devel -y
|
2017-09-14 09:21:37 +00:00
|
|
|
|
|
|
|
# we can has SSH
|
|
|
|
EXPOSE 22
|
|
|
|
|
|
|
|
# pepare for takeoff
|
|
|
|
CMD ["/usr/sbin/init"]
|